@mikey-pro/eslint-config 4.8.3 → 4.8.6

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.
Files changed (2) hide show
  1. package/index.js +9 -11
  2. 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': 1,
52
- 'import/named': 1,
53
- 'import/namespace': 1,
54
- 'import/no-named-as-default-member': 1,
55
- 'import/no-unresolved': 1,
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': 1,
192
- 'import/no-duplicates': 1,
193
- 'import/no-mutable-exports': 1,
194
- 'import/no-unresolved': 1,
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
  },
@@ -248,7 +248,6 @@ module.exports = {
248
248
  'class-methods-use-this': 1,
249
249
  'constructor-super': 1,
250
250
  'dot-notation': 1,
251
- 'filenames/match-regex': 1,
252
251
  'func-names': 1,
253
252
  'import/extensions': [1, 'never', { ignorePackages: true }],
254
253
  'import/no-commonjs': 1,
@@ -398,7 +397,6 @@ module.exports = {
398
397
  'require-atomic-updates': 1,
399
398
  'rest-spread-spacing': 1,
400
399
  semi: 1,
401
- 'sort-imports': 1,
402
400
  'sort-keys-fix/sort-keys-fix': 1,
403
401
  'sort-vars': 1,
404
402
  'space-before-function-paren': [1, 'always'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikey-pro/eslint-config",
3
- "version": "4.8.3",
3
+ "version": "4.8.6",
4
4
  "description": "Mikey Pro ESLint configuration",
5
5
  "main": "index.js",
6
6
  "dependencies": {