@jabworks/eslint-plugin 1.0.2 → 1.0.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @jabworks/eslint-plugin
2
2
 
3
+ ## 1.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Tweak stylistic rules
8
+
3
9
  ## 1.0.2
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,32 +1,33 @@
1
1
  {
2
+ "author": "HarveyVi",
3
+ "description": "Opinionated ESLint plugin and flat config for JS, TS, React, and Next.js",
2
4
  "dependencies": {
3
5
  "@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
4
- "@eslint/js": "^9.27.0",
5
- "@next/eslint-plugin-next": "^15.3.2",
6
- "@stylistic/eslint-plugin": "^4.4.0",
7
- "@types/node": "^22.15.23",
8
- "@vitest/eslint-plugin": "^1.2.1",
9
- "eslint": "^9.27.0",
10
- "eslint-config-prettier": "^10.1.5",
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",
12
+ "eslint-config-prettier": "^10.1.8",
11
13
  "eslint-import-resolver-alias": "^1.1.2",
12
- "eslint-import-resolver-typescript": "^4.4.1",
14
+ "eslint-import-resolver-typescript": "^4.4.4",
13
15
  "eslint-plugin-eslint-comments": "^3.2.0",
14
- "eslint-plugin-import": "^2.31.0",
15
- "eslint-plugin-jest": "^28.11.1",
16
+ "eslint-plugin-import": "^2.32.0",
17
+ "eslint-plugin-jest": "^29.0.1",
16
18
  "eslint-plugin-jsx-a11y": "^6.10.2",
17
- "eslint-plugin-playwright": "^2.2.0",
19
+ "eslint-plugin-playwright": "^2.2.2",
18
20
  "eslint-plugin-react": "^7.37.5",
19
21
  "eslint-plugin-react-compiler": "19.1.0-rc.2",
20
- "eslint-plugin-react-hooks": "^5.2.0",
22
+ "eslint-plugin-react-hooks": "^6.1.0",
21
23
  "eslint-plugin-simple-import-sort": "^12.1.1",
22
- "eslint-plugin-testing-library": "^7.2.2",
23
- "eslint-plugin-turbo": "^2.5.3",
24
- "eslint-plugin-unicorn": "^59.0.1",
25
- "globals": "^16.2.0",
26
- "typescript": "^5.8.3",
27
- "typescript-eslint": "^8.33.0"
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",
28
+ "typescript": "^5.9.3",
29
+ "typescript-eslint": "^8.45.0"
28
30
  },
29
- "description": "Opinionated ESLint plugin and flat config for JS, TS, React, and Next.js",
30
31
  "devDependencies": {
31
32
  "@jabworks/typescript-config": "0.0.0"
32
33
  },
@@ -47,11 +48,6 @@
47
48
  ],
48
49
  "main": "./src/index.js",
49
50
  "name": "@jabworks/eslint-plugin",
50
- "peerDependencies": {
51
- "eslint": ">=9.27.0",
52
- "typescript": ">=5.8.0",
53
- "typescript-eslint": ">=8.33.0"
54
- },
55
51
  "private": false,
56
52
  "repository": {
57
53
  "type": "git",
@@ -59,5 +55,10 @@
59
55
  },
60
56
  "type": "module",
61
57
  "types": "./src/types/index.d.ts",
62
- "version": "1.0.2"
58
+ "peerDependencies": {
59
+ "eslint": ">=9.27.0",
60
+ "typescript": ">=5.8.0",
61
+ "typescript-eslint": ">=8.33.0"
62
+ },
63
+ "version": "1.0.3"
63
64
  }
@@ -114,6 +114,7 @@ const rules = {
114
114
  * 🔧 Fixable - https://eslint.org/docs/latest/rules/prefer-arrow-callback
115
115
  */
116
116
  'prefer-arrow-callback': 'warn',
117
+ '@stylelistic/spaced-comment': 'error',
117
118
  };
118
119
 
119
120
  export default rules;