@jabworks/eslint-plugin 1.0.4 → 1.0.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 (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +6 -6
  3. package/package.json +15 -15
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @jabworks/eslint-plugin
2
2
 
3
+ ## 1.0.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Update dependencies to latest
8
+
9
+ ## 1.0.5
10
+
11
+ ### Patch Changes
12
+
13
+ - Update README.md
14
+
3
15
  ## 1.0.4
4
16
 
5
17
  ### Patch Changes
package/README.md CHANGED
@@ -29,15 +29,15 @@ Add the plugin to your ESLint configuration. Example using the flat config forma
29
29
 
30
30
  ```js
31
31
  // eslint.config.js or eslint.config.mjs
32
- import { plugin as jablabPlugin } from '@jabworks/eslint-plugin';
32
+ import { plugin as jabworksPlugin } from '@jabworks/eslint-plugin';
33
33
 
34
34
  export default [
35
- ...jablabPlugin.configs.base,
35
+ ...jabworksPlugin.configs.base,
36
36
  // or for React/Next.js/TypeScript/Vitest:
37
- // ...jablabPlugin.configs.react,
38
- // ...jablabPlugin.configs.next,
39
- // ...jablabPlugin.configs.typescript,
40
- // ...jablabPlugin.configs.vitest,
37
+ // ...jabworksPlugin.configs.react,
38
+ // ...jabworksPlugin.configs.next,
39
+ // ...jabworksPlugin.configs.typescript,
40
+ // ...jabworksPlugin.configs.vitest,
41
41
  ];
42
42
  ```
43
43
 
package/package.json CHANGED
@@ -3,30 +3,30 @@
3
3
  "description": "Opinionated ESLint plugin and flat config for JS, TS, React, and Next.js",
4
4
  "dependencies": {
5
5
  "@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
6
- "@eslint/js": "^9.36.0",
7
- "@next/eslint-plugin-next": "^15.5.4",
8
- "@stylistic/eslint-plugin": "^5.4.0",
9
- "@types/node": "^24.6.2",
10
- "@vitest/eslint-plugin": "^1.3.14",
11
- "eslint": "^9.36.0",
6
+ "@eslint/js": "^9.39.1",
7
+ "@next/eslint-plugin-next": "^16.0.7",
8
+ "@stylistic/eslint-plugin": "^5.6.1",
9
+ "@types/node": "^24.10.1",
10
+ "@vitest/eslint-plugin": "^1.5.1",
11
+ "eslint": "^9.39.1",
12
12
  "eslint-config-prettier": "^10.1.8",
13
13
  "eslint-import-resolver-alias": "^1.1.2",
14
14
  "eslint-import-resolver-typescript": "^4.4.4",
15
15
  "eslint-plugin-eslint-comments": "^3.2.0",
16
16
  "eslint-plugin-import": "^2.32.0",
17
- "eslint-plugin-jest": "^29.0.1",
17
+ "eslint-plugin-jest": "^29.2.1",
18
18
  "eslint-plugin-jsx-a11y": "^6.10.2",
19
- "eslint-plugin-playwright": "^2.2.2",
19
+ "eslint-plugin-playwright": "^2.4.0",
20
20
  "eslint-plugin-react": "^7.37.5",
21
21
  "eslint-plugin-react-compiler": "19.1.0-rc.2",
22
- "eslint-plugin-react-hooks": "^6.1.0",
22
+ "eslint-plugin-react-hooks": "^7.0.1",
23
23
  "eslint-plugin-simple-import-sort": "^12.1.1",
24
- "eslint-plugin-testing-library": "^7.11.0",
25
- "eslint-plugin-turbo": "^2.5.8",
26
- "eslint-plugin-unicorn": "^61.0.2",
27
- "globals": "^16.4.0",
24
+ "eslint-plugin-testing-library": "^7.13.5",
25
+ "eslint-plugin-turbo": "^2.6.1",
26
+ "eslint-plugin-unicorn": "^62.0.0",
27
+ "globals": "^16.5.0",
28
28
  "typescript": "^5.9.3",
29
- "typescript-eslint": "^8.45.0"
29
+ "typescript-eslint": "^8.48.1"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@jabworks/typescript-config": "0.0.0"
@@ -60,5 +60,5 @@
60
60
  "typescript": ">=5.8.0",
61
61
  "typescript-eslint": ">=8.33.0"
62
62
  },
63
- "version": "1.0.4"
63
+ "version": "1.0.6"
64
64
  }