|
17 | 17 | "@typescript-eslint/adjacent-overload-signatures": "error", |
18 | 18 | "@typescript-eslint/array-type": "error", |
19 | 19 |
|
20 | | - "camelcase": "off", |
| 20 | + "brace-style": "off", |
| 21 | + "@typescript-eslint/brace-style": ["error", "stroustrup", { "allowSingleLine": true }], |
| 22 | + |
21 | 23 | "@typescript-eslint/naming-convention": [ |
22 | 24 | "error", |
23 | 25 | { "selector": "typeLike", "format": ["PascalCase"], "filter": { "regex": "^(__String|[A-Za-z]+_[A-Za-z]+)$", "match": false } }, |
|
32 | 34 | ], |
33 | 35 |
|
34 | 36 | "@typescript-eslint/consistent-type-definitions": ["error", "interface"], |
| 37 | + |
| 38 | + "no-duplicate-imports": "off", |
| 39 | + "@typescript-eslint/no-duplicate-imports": "error", |
| 40 | + |
35 | 41 | "@typescript-eslint/no-inferrable-types": "error", |
36 | 42 | "@typescript-eslint/no-misused-new": "error", |
37 | 43 | "@typescript-eslint/no-this-alias": "error", |
|
86 | 92 | "jsdoc/check-alignment": "error", |
87 | 93 |
|
88 | 94 | // eslint |
89 | | - "brace-style": ["error", "stroustrup", { "allowSingleLine": true }], |
90 | 95 | "constructor-super": "error", |
91 | 96 | "curly": ["error", "multi-line"], |
92 | 97 | "dot-notation": "error", |
|
95 | 100 | "new-parens": "error", |
96 | 101 | "no-caller": "error", |
97 | 102 | "no-duplicate-case": "error", |
98 | | - "no-duplicate-imports": "error", |
99 | 103 | "no-empty": "error", |
100 | 104 | "no-eval": "error", |
101 | 105 | "no-extra-bind": "error", |
|
0 commit comments