@enormora/eslint-config-base 0.0.10 → 0.0.11

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/base.js CHANGED
@@ -362,9 +362,9 @@ export const baseConfig = {
362
362
  'import/extensions': [
363
363
  'error',
364
364
  {
365
- js: 'always',
366
- jsx: 'always',
367
- json: 'always'
365
+ js: 'ignorePackages',
366
+ jsx: 'ignorePackages',
367
+ json: 'ignorePackages'
368
368
  }
369
369
  ],
370
370
  'import/namespace': [
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "dependencies": {
3
- "@cspell/eslint-plugin": "8.1.3",
4
- "@stylistic/eslint-plugin": "1.5.1",
3
+ "@cspell/eslint-plugin": "8.3.2",
4
+ "@stylistic/eslint-plugin": "1.5.4",
5
5
  "eslint-plugin-array-func": "4.0.0",
6
6
  "eslint-plugin-destructuring": "2.2.1",
7
7
  "eslint-plugin-eslint-comments": "3.2.0",
8
- "eslint-plugin-import": "2.29.0",
8
+ "eslint-plugin-import": "2.29.1",
9
9
  "eslint-plugin-no-secrets": "0.8.9",
10
- "eslint-plugin-prettier": "5.0.1",
10
+ "eslint-plugin-prettier": "5.1.3",
11
11
  "eslint-plugin-promise": "6.1.1",
12
12
  "eslint-plugin-sonarjs": "0.23.0",
13
- "eslint-plugin-unicorn": "49.0.0"
13
+ "eslint-plugin-unicorn": "50.0.1"
14
14
  },
15
15
  "license": "MIT",
16
16
  "main": "base.js",
@@ -20,5 +20,5 @@
20
20
  "url": "git://github.com/enormora/eslint-config.git"
21
21
  },
22
22
  "type": "module",
23
- "version": "0.0.10"
23
+ "version": "0.0.11"
24
24
  }
@@ -123,6 +123,7 @@ export const bestPracticesRuleSet = {
123
123
  'unicorn/prefer-blob-reading-methods': 'error',
124
124
  'unicorn/prefer-top-level-await': 'off',
125
125
  'unicorn/prefer-at': 'error',
126
+ 'unicorn/no-unnecessary-polyfills': 'off',
126
127
 
127
128
  'array-func/from-map': 'error',
128
129
  'array-func/no-unnecessary-this-arg': 'error',