From b498ef295eadeff2c46bc70f84f672d6fc0e74df Mon Sep 17 00:00:00 2001 From: The Jared Wilcurt Date: Sun, 16 Sep 2018 13:47:44 -0400 Subject: [PATCH] Update quotes.md --- docs/rules/quotes.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/rules/quotes.md b/docs/rules/quotes.md index 02c748c4da8..25a09fd0dbf 100644 --- a/docs/rules/quotes.md +++ b/docs/rules/quotes.md @@ -147,6 +147,8 @@ var single = 'single'; var single = `single`; ``` +`{ "allowTemplateLiterals": false }` will not disallow the usage of all template literals. If you want to forbid any instance of template literals, use [no-restricted-syntax](https://eslint.org/docs/rules/no-restricted-syntax) and target the `TemplateLiteral` selector. + ## When Not To Use It If you do not need consistency in your string styles, you can safely disable this rule.