@mikey-pro/eslint-config 4.8.4 → 4.8.7
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
|
@@ -48,11 +48,11 @@ module.exports = {
|
|
|
48
48
|
plugins: ['@typescript-eslint'],
|
|
49
49
|
rules: {
|
|
50
50
|
'@typescript-eslint/naming-convention': 1,
|
|
51
|
-
'import/default':
|
|
52
|
-
'import/named':
|
|
53
|
-
'import/namespace':
|
|
54
|
-
'import/no-named-as-default-member':
|
|
55
|
-
'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,
|
|
56
56
|
'prettier/prettier': [1, { parser: 'typescript' }],
|
|
57
57
|
},
|
|
58
58
|
},
|
|
@@ -188,10 +188,10 @@ module.exports = {
|
|
|
188
188
|
plugins: ['svelte3'],
|
|
189
189
|
processor: 'svelte3/svelte3',
|
|
190
190
|
rules: {
|
|
191
|
-
'import/first':
|
|
192
|
-
'import/no-duplicates':
|
|
193
|
-
'import/no-mutable-exports':
|
|
194
|
-
'import/no-unresolved':
|
|
191
|
+
'import/first': 0,
|
|
192
|
+
'import/no-duplicates': 0,
|
|
193
|
+
'import/no-mutable-exports': 0,
|
|
194
|
+
'import/no-unresolved': 0,
|
|
195
195
|
'prettier/prettier': 1,
|
|
196
196
|
},
|
|
197
197
|
},
|
|
@@ -278,7 +278,6 @@ module.exports = {
|
|
|
278
278
|
'no-empty': 1,
|
|
279
279
|
'no-empty-pattern': 1,
|
|
280
280
|
'no-extra-bind': 1,
|
|
281
|
-
'no-extra-parens': 1,
|
|
282
281
|
'no-extra-semi': 1,
|
|
283
282
|
'no-floating-decimal': 1,
|
|
284
283
|
'no-iterator': 1,
|
|
@@ -397,7 +396,6 @@ module.exports = {
|
|
|
397
396
|
'require-atomic-updates': 1,
|
|
398
397
|
'rest-spread-spacing': 1,
|
|
399
398
|
semi: 1,
|
|
400
|
-
'sort-imports': 1,
|
|
401
399
|
'sort-keys-fix/sort-keys-fix': 1,
|
|
402
400
|
'sort-vars': 1,
|
|
403
401
|
'space-before-function-paren': [1, 'always'],
|