|
42 | 42 | "caughtErrorsIgnorePattern": "^_"
|
43 | 43 | }
|
44 | 44 | ],
|
45 |
| - "@typescript-eslint/naming-convention": [ |
46 |
| - "warn", |
47 |
| - { |
48 |
| - "selector": "default", |
49 |
| - "format": ["camelCase"], |
50 |
| - "leadingUnderscore": "allow" |
51 |
| - }, |
52 |
| - { |
53 |
| - "selector": "property", |
54 |
| - "format": ["camelCase", "UPPER_CASE"], |
55 |
| - "leadingUnderscore": "allow" |
56 |
| - }, |
57 |
| - { |
58 |
| - "selector": "enum", |
59 |
| - "format": ["PascalCase"] |
60 |
| - }, |
61 |
| - { |
62 |
| - "selector": "enumMember", |
63 |
| - "format": ["PascalCase", "UPPER_CASE"] |
64 |
| - }, |
65 |
| - { |
66 |
| - "selector": "typeParameter", |
67 |
| - "format": ["PascalCase"] |
68 |
| - }, |
69 |
| - { |
70 |
| - "selector": "typeAlias", |
71 |
| - "format": ["PascalCase"] |
72 |
| - }, |
73 |
| - { |
74 |
| - "selector": "interface", |
75 |
| - "format": ["PascalCase"] |
76 |
| - }, |
77 |
| - { |
78 |
| - "selector": "classProperty", |
79 |
| - "format": ["camelCase", "PascalCase", "UPPER_CASE"], |
80 |
| - "leadingUnderscore": "allow" |
81 |
| - }, |
82 |
| - { |
83 |
| - "selector": "class", |
84 |
| - "format": ["PascalCase"] |
85 |
| - }, |
86 |
| - { |
87 |
| - "selector": "variable", |
88 |
| - "format": ["camelCase", "PascalCase", "UPPER_CASE"], |
89 |
| - "leadingUnderscore": "allow" |
90 |
| - }, |
91 |
| - { |
92 |
| - "selector": "objectLiteralMethod", |
93 |
| - "format": ["camelCase", "PascalCase", "UPPER_CASE"] |
94 |
| - }, |
95 |
| - { |
96 |
| - "selector": "objectLiteralProperty", |
97 |
| - "format": ["camelCase", "PascalCase", "UPPER_CASE"] |
98 |
| - }, |
99 |
| - { |
100 |
| - "selector": "function", |
101 |
| - "format": ["camelCase", "PascalCase"], |
102 |
| - "leadingUnderscore": "allow" |
103 |
| - } |
104 |
| - ], |
| 45 | + "@typescript-eslint/naming-convention": "off", |
105 | 46 | "@typescript-eslint/prefer-namespace-keyword": "error",
|
106 | 47 | // because we're using object
|
107 | 48 | "@typescript-eslint/ban-types": "warn",
|
|
0 commit comments