@mikey-pro/eslint-config 4.8.2 → 4.8.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +9 -11
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -47,13 +47,12 @@ module.exports = {
|
|
|
47
47
|
},
|
|
48
48
|
plugins: ['@typescript-eslint'],
|
|
49
49
|
rules: {
|
|
50
|
-
'@typescript-eslint/indent': 1,
|
|
51
50
|
'@typescript-eslint/naming-convention': 1,
|
|
52
|
-
'import/default':
|
|
53
|
-
'import/named':
|
|
54
|
-
'import/namespace':
|
|
55
|
-
'import/no-named-as-default-member':
|
|
56
|
-
'import/no-unresolved':
|
|
51
|
+
'import/default': 0,
|
|
52
|
+
'import/named': 0,
|
|
53
|
+
'import/namespace': 0,
|
|
54
|
+
'import/no-named-as-default-member': 0,
|
|
55
|
+
'import/no-unresolved': 0,
|
|
57
56
|
'prettier/prettier': [1, { parser: 'typescript' }],
|
|
58
57
|
},
|
|
59
58
|
},
|
|
@@ -189,10 +188,10 @@ module.exports = {
|
|
|
189
188
|
plugins: ['svelte3'],
|
|
190
189
|
processor: 'svelte3/svelte3',
|
|
191
190
|
rules: {
|
|
192
|
-
'import/first':
|
|
193
|
-
'import/no-duplicates':
|
|
194
|
-
'import/no-mutable-exports':
|
|
195
|
-
'import/no-unresolved':
|
|
191
|
+
'import/first': 0,
|
|
192
|
+
'import/no-duplicates': 0,
|
|
193
|
+
'import/no-mutable-exports': 0,
|
|
194
|
+
'import/no-unresolved': 0,
|
|
196
195
|
'prettier/prettier': 1,
|
|
197
196
|
},
|
|
198
197
|
},
|
|
@@ -249,7 +248,6 @@ module.exports = {
|
|
|
249
248
|
'class-methods-use-this': 1,
|
|
250
249
|
'constructor-super': 1,
|
|
251
250
|
'dot-notation': 1,
|
|
252
|
-
'filenames/match-regex': 1,
|
|
253
251
|
'func-names': 1,
|
|
254
252
|
'import/extensions': [1, 'never', { ignorePackages: true }],
|
|
255
253
|
'import/no-commonjs': 1,
|