|
21 | 21 | "@typescript-eslint/adjacent-overload-signatures": "error", |
22 | 22 | "@typescript-eslint/array-type": "off", |
23 | 23 | "@typescript-eslint/ban-types": "off", |
24 | | - "@typescript-eslint/class-name-casing": "error", |
| 24 | + "@typescript-eslint/no-unsafe-assignment": "off", |
| 25 | + "@typescript-eslint/no-unsafe-member-access": "off", |
| 26 | + "@typescript-eslint/no-unsafe-call": "off", |
| 27 | + "@typescript-eslint/no-unsafe-return": "off", |
| 28 | + "@typescript-eslint/explicit-module-boundary-types": "off", |
| 29 | + "@typescript-eslint/naming-convention": [ |
| 30 | + "error", |
| 31 | + { |
| 32 | + "selector": "default", |
| 33 | + "format": ["camelCase"] |
| 34 | + }, |
| 35 | + { |
| 36 | + "selector": "function", |
| 37 | + "format": ["PascalCase", "camelCase"] |
| 38 | + }, |
| 39 | + { |
| 40 | + "selector": "variable", |
| 41 | + "format": ["camelCase", "UPPER_CASE", "PascalCase"] |
| 42 | + }, |
| 43 | + { |
| 44 | + "selector": "parameter", |
| 45 | + "format": ["camelCase"], |
| 46 | + "leadingUnderscore": "allow" |
| 47 | + }, |
| 48 | + { |
| 49 | + "selector": "property", |
| 50 | + "format": ["camelCase", "PascalCase"], |
| 51 | + "leadingUnderscore": "allow" |
| 52 | + }, |
| 53 | + { |
| 54 | + "selector": "memberLike", |
| 55 | + "modifiers": ["private"], |
| 56 | + "format": ["camelCase"], |
| 57 | + "leadingUnderscore": "require" |
| 58 | + }, |
| 59 | + { |
| 60 | + "selector": "typeLike", |
| 61 | + "format": ["PascalCase"] |
| 62 | + }, |
| 63 | + { |
| 64 | + "selector": "enumMember", |
| 65 | + "format": ["PascalCase"] |
| 66 | + } |
| 67 | + ], |
25 | 68 | "@typescript-eslint/typedef": [ |
26 | 69 | "error", |
27 | 70 | { |
|
0 commit comments