@wkovacs64/eslint-config 7.3.1 → 7.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/index.js +1 -4
  2. package/package.json +11 -12
package/index.js CHANGED
@@ -2,7 +2,6 @@
2
2
  // Forked from https://github.com/epicweb-dev/config
3
3
  //
4
4
  import globals from 'globals';
5
- import { fixupPluginRules } from '@eslint/compat';
6
5
  import eslint from '@eslint/js';
7
6
  import tseslint from 'typescript-eslint';
8
7
  import reactPlugin from 'eslint-plugin-react';
@@ -292,9 +291,7 @@ export const config = [
292
291
  files: testFiles,
293
292
  ignores: [...playwrightTestFiles],
294
293
  plugins: {
295
- 'testing-library': fixupPluginRules(
296
- (await import('eslint-plugin-testing-library')).default,
297
- ),
294
+ 'testing-library': (await import('eslint-plugin-testing-library')).default,
298
295
  },
299
296
  rules: {
300
297
  'testing-library/await-async-events': ERROR,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wkovacs64/eslint-config",
3
- "version": "7.3.1",
3
+ "version": "7.4.0",
4
4
  "description": "@wKovacs64 ESLint config",
5
5
  "keywords": [
6
6
  "eslint",
@@ -50,29 +50,28 @@
50
50
  "node": "^18.18.0 || >=20.0.0"
51
51
  },
52
52
  "dependencies": {
53
- "@eslint/compat": "~1.1.1",
54
53
  "@eslint/js": "^9.15.0",
55
- "eslint-plugin-import-x": "^4.4.2",
56
- "eslint-plugin-jest-dom": "^5.4.0",
54
+ "@vitest/eslint-plugin": "^1.1.10",
55
+ "eslint-plugin-import-x": "^4.4.3",
56
+ "eslint-plugin-jest-dom": "^5.5.0",
57
57
  "eslint-plugin-jsx-a11y": "^6.10.2",
58
- "eslint-plugin-playwright": "^2.0.1",
58
+ "eslint-plugin-playwright": "^2.1.0",
59
59
  "eslint-plugin-react": "^7.37.2",
60
60
  "eslint-plugin-react-hooks": "^5.0.0",
61
- "eslint-plugin-testing-library": "^6.4.0",
62
- "@vitest/eslint-plugin": "^1.1.10",
61
+ "eslint-plugin-testing-library": "^7.0.0",
63
62
  "globals": "^15.12.0",
64
- "typescript-eslint": "^8.14.0"
63
+ "typescript-eslint": "^8.15.0"
65
64
  },
66
65
  "devDependencies": {
67
66
  "@changesets/changelog-github": "0.5.0",
68
- "@changesets/cli": "2.27.9",
67
+ "@changesets/cli": "2.27.10",
69
68
  "@types/eslint__js": "8.42.3",
70
- "@types/node": "22.9.0",
69
+ "@types/node": "22.9.3",
71
70
  "@types/react": "18.3.12",
72
71
  "@types/react-dom": "18.3.1",
73
72
  "@wkovacs64/prettier-config": "4.1.1",
74
- "eslint": "8.57.1",
73
+ "eslint": "9.15.0",
75
74
  "prettier": "3.3.3",
76
- "typescript": "5.6.3"
75
+ "typescript": "5.7.2"
77
76
  }
78
77
  }