@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.
Files changed (2) hide show
  1. package/index.js +9 -11
  2. 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': 1,
53
- 'import/named': 1,
54
- 'import/namespace': 1,
55
- 'import/no-named-as-default-member': 1,
56
- '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,
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': 1,
193
- 'import/no-duplicates': 1,
194
- 'import/no-mutable-exports': 1,
195
- 'import/no-unresolved': 1,
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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikey-pro/eslint-config",
3
- "version": "4.8.2",
3
+ "version": "4.8.5",
4
4
  "description": "Mikey Pro ESLint configuration",
5
5
  "main": "index.js",
6
6
  "dependencies": {