diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-13 17:24:16 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-13 17:24:16 +0300 |
commit | 268f0c28af2c139d28e900ec37ae86f90b7f71e8 (patch) | |
tree | b51a24ce6cd24449e4ca1d70b86cea1feddaf2d8 /src/rules/typescript | |
parent | dab6a8a84abd417f02816cbe185e3938cea856c0 (diff) | |
download | eslint-config-268f0c28af2c139d28e900ec37ae86f90b7f71e8.tar.xz eslint-config-268f0c28af2c139d28e900ec37ae86f90b7f71e8.zip |
feat(typescript): Rule "quotes"
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'src/rules/typescript')
-rw-r--r-- | src/rules/typescript/default.json | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/rules/typescript/default.json b/src/rules/typescript/default.json index 0967ef4..216245a 100644 --- a/src/rules/typescript/default.json +++ b/src/rules/typescript/default.json @@ -1 +1,13 @@ -{} +{ + "@typescript-eslint/quotes": [ + "error", + "double", + { + "allowTemplateLiterals": false, + "avoidEscape": false + } + ], + "quotes": [ + "off" + ] +} |