Skip to content

Commit 42dd304

Browse files
committed
@typescript-eslint/quotes
1 parent 41ede77 commit 42dd304

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.eslintrc.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@
1616
"rules": {
1717
"@typescript-eslint/adjacent-overload-signatures": "error",
1818
"@typescript-eslint/array-type": "error",
19+
1920
"camelcase": "off",
2021
"@typescript-eslint/camelcase": ["error", { "properties": "never", "allow": ["^[A-Za-z][a-zA-Za-z]+_[A-Za-z]+$"] }],
22+
2123
"@typescript-eslint/class-name-casing": "error",
2224
"@typescript-eslint/consistent-type-definitions": ["error", "interface"],
2325
"@typescript-eslint/interface-name-prefix": "error",
@@ -27,8 +29,13 @@
2729
"@typescript-eslint/prefer-for-of": "error",
2830
"@typescript-eslint/prefer-function-type": "error",
2931
"@typescript-eslint/prefer-namespace-keyword": "error",
32+
33+
"quotes": "off",
34+
"@typescript-eslint/quotes": ["error", "double", { "avoidEscape": true, "allowTemplateLiterals": true }],
35+
3036
"semi": "off",
3137
"@typescript-eslint/semi": "error",
38+
3239
"@typescript-eslint/triple-slash-reference": "error",
3340
"@typescript-eslint/type-annotation-spacing": "error",
3441
"@typescript-eslint/unified-signatures": "error",
@@ -96,7 +103,6 @@
96103
"prefer-const": "error",
97104
"prefer-object-spread": "error",
98105
"quote-props": ["error", "consistent-as-needed"],
99-
"quotes": ["error", "double", { "avoidEscape": true, "allowTemplateLiterals": true }],
100106
"space-in-parens": "error",
101107
"unicode-bom": ["error", "never"],
102108
"use-isnan": "error"

0 commit comments

Comments
 (0)