|
16 | 16 | "rules": {
|
17 | 17 | "@typescript-eslint/adjacent-overload-signatures": "error",
|
18 | 18 | "@typescript-eslint/array-type": "error",
|
| 19 | + |
19 | 20 | "camelcase": "off",
|
20 | 21 | "@typescript-eslint/camelcase": ["error", { "properties": "never", "allow": ["^[A-Za-z][a-zA-Za-z]+_[A-Za-z]+$"] }],
|
| 22 | + |
21 | 23 | "@typescript-eslint/class-name-casing": "error",
|
22 | 24 | "@typescript-eslint/consistent-type-definitions": ["error", "interface"],
|
23 | 25 | "@typescript-eslint/interface-name-prefix": "error",
|
|
27 | 29 | "@typescript-eslint/prefer-for-of": "error",
|
28 | 30 | "@typescript-eslint/prefer-function-type": "error",
|
29 | 31 | "@typescript-eslint/prefer-namespace-keyword": "error",
|
| 32 | + |
| 33 | + "quotes": "off", |
| 34 | + "@typescript-eslint/quotes": ["error", "double", { "avoidEscape": true, "allowTemplateLiterals": true }], |
| 35 | + |
30 | 36 | "semi": "off",
|
31 | 37 | "@typescript-eslint/semi": "error",
|
| 38 | + |
32 | 39 | "@typescript-eslint/triple-slash-reference": "error",
|
33 | 40 | "@typescript-eslint/type-annotation-spacing": "error",
|
34 | 41 | "@typescript-eslint/unified-signatures": "error",
|
|
96 | 103 | "prefer-const": "error",
|
97 | 104 | "prefer-object-spread": "error",
|
98 | 105 | "quote-props": ["error", "consistent-as-needed"],
|
99 |
| - "quotes": ["error", "double", { "avoidEscape": true, "allowTemplateLiterals": true }], |
100 | 106 | "space-in-parens": "error",
|
101 | 107 | "unicode-bom": ["error", "never"],
|
102 | 108 | "use-isnan": "error"
|
|
0 commit comments