@wkovacs64/eslint-config 7.2.0 → 7.2.1
Sign up to get free protection for your applications and to get access to all the features.
- package/index.js +9 -9
- package/package.json +3 -2
package/index.js
CHANGED
@@ -184,15 +184,15 @@ export const config = [
|
|
184
184
|
},
|
185
185
|
],
|
186
186
|
'@typescript-eslint/consistent-type-definitions': OFF,
|
187
|
-
|
188
|
-
'@typescript-eslint/consistent-type-imports': [
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
],
|
187
|
+
// Note: use this rule _OR_ verbatimModuleSyntax in tsconfig.json - not both
|
188
|
+
// '@typescript-eslint/consistent-type-imports': [
|
189
|
+
// ERROR,
|
190
|
+
// {
|
191
|
+
// prefer: 'type-imports',
|
192
|
+
// disallowTypeAnnotations: true,
|
193
|
+
// fixStyle: 'inline-type-imports',
|
194
|
+
// },
|
195
|
+
// ],
|
196
196
|
'@typescript-eslint/explicit-module-boundary-types': OFF,
|
197
197
|
'@typescript-eslint/naming-convention': [
|
198
198
|
ERROR,
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@wkovacs64/eslint-config",
|
3
|
-
"version": "7.2.
|
3
|
+
"version": "7.2.1",
|
4
4
|
"description": "@wKovacs64 ESLint config",
|
5
5
|
"keywords": [
|
6
6
|
"eslint",
|
@@ -18,7 +18,8 @@
|
|
18
18
|
"type": "module",
|
19
19
|
"main": "index.js",
|
20
20
|
"exports": {
|
21
|
-
".": "./index.js"
|
21
|
+
".": "./index.js",
|
22
|
+
"./package.json": "./package.json"
|
22
23
|
},
|
23
24
|
"files": [
|
24
25
|
"index.js"
|