@wistia/eslint-config 0.18.0 → 0.18.1

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.
@@ -14,6 +14,6 @@ module.exports = {
14
14
  extends: [
15
15
  '../../rules/eslint/react',
16
16
  '../../rules/eslint/react-a11y',
17
- '../../rules/eslint/react-hooks.js',
17
+ '../../rules/eslint/react-hooks',
18
18
  ].map(require.resolve),
19
19
  };
@@ -12,5 +12,10 @@ module.exports = {
12
12
  es2022: true,
13
13
  },
14
14
 
15
- extends: ['../../rules/eslint/react', '../../rules/eslint/typescript-react'].map(require.resolve),
15
+ extends: [
16
+ '../../rules/eslint/react',
17
+ '../../rules/eslint/react-a11y',
18
+ '../../rules/eslint/react-hooks',
19
+ '../../rules/eslint/typescript-react',
20
+ ].map(require.resolve),
16
21
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wistia/eslint-config",
3
- "version": "0.18.0",
3
+ "version": "0.18.1",
4
4
  "description": "Wistia's ESLint configurations",
5
5
  "main": "react.js",
6
6
  "exports": {
@@ -546,7 +546,7 @@ module.exports = {
546
546
  '@typescript-eslint/no-magic-numbers': [
547
547
  'error',
548
548
  {
549
- ignore: [-1, 0, 1, 2, 3, 4, 5, 100, 1000, 2000, 3000, 4000, 5000],
549
+ ignore: [-1, 0, 1, 2, 3, 4, 5, 100, 1024, 1000, 10000],
550
550
  ignoreArrayIndexes: true,
551
551
  ignoreDefaultValues: true,
552
552
  ignoreTypeIndexes: true,