@slango.configs/eslint 1.1.49 → 1.2.0

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.
@@ -1,4 +1,5 @@
1
-
2
- > @slango.configs/eslint@1.1.48 lint /home/runner/work/slango/slango/configs/eslint
3
- > eslint . --max-warnings 0
4
-
1
+
2
+ 
3
+ > @slango.configs/eslint@1.1.51 lint /Volumes/External Storage/Workspace/slango/configs/eslint
4
+ > eslint . --max-warnings 0
5
+
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @slango.configs/eslint
2
2
 
3
+ ## 1.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 1895011: Eslint 10 bump
8
+
9
+ ## 1.1.51
10
+
11
+ ### Patch Changes
12
+
13
+ - 4010cfc: Dependencies bump
14
+
15
+ ## 1.1.50
16
+
17
+ ### Patch Changes
18
+
19
+ - 8ee771f: Dependencies bump
20
+
3
21
  ## 1.1.49
4
22
 
5
23
  ### Patch Changes
package/README.md CHANGED
@@ -78,7 +78,6 @@ Passing an unknown option or an invalid level throws a descriptive error.
78
78
 
79
79
  ## Things to take into account (and possibly review)
80
80
 
81
- - At the time of writing eslint-config-next is not compatible with eslint 9, thus @eslint/compat and @eslint/eslintrc are used
82
81
  - At the time of writing eslint-config-prettier is needed as a dependency to use eslint-plugin-prettier
83
82
  - eslint-plugin-import-x supports eslint 9 but eslint-plugin-import does not [usage comparison](https://npm-compare.com/eslint-plugin-import,eslint-plugin-import-x)
84
83
  - eslint-import-resolver-node does not seem to play well with monorepo/pattern exports in package.json (thus eslint-import-resolver-typescript is used even for javascript)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slango.configs/eslint",
3
- "version": "1.1.49",
3
+ "version": "1.2.0",
4
4
  "private": false,
5
5
  "description": "Slango eslint configs",
6
6
  "type": "module",
@@ -9,28 +9,26 @@
9
9
  },
10
10
  "dependencies": {
11
11
  "@eslint-community/eslint-plugin-eslint-comments": "4.6.0",
12
- "@eslint/compat": "2.0.2",
13
- "@eslint/eslintrc": "3.3.3",
14
- "@eslint/js": "9.39.2",
12
+ "@eslint/js": "10.0.1",
15
13
  "@next/eslint-plugin-next": "16.1.6",
16
14
  "eslint-config-next": "16.1.6",
17
15
  "eslint-config-prettier": "10.1.8",
18
16
  "eslint-import-resolver-typescript": "4.4.4",
19
17
  "eslint-plugin-import-x": "4.16.1",
20
18
  "eslint-plugin-jsx-a11y": "6.10.2",
21
- "eslint-plugin-perfectionist": "5.4.0",
19
+ "eslint-plugin-perfectionist": "5.5.0",
22
20
  "eslint-plugin-prettier": "5.5.5",
23
21
  "eslint-plugin-react-hooks": "7.0.1",
24
- "eslint-plugin-react-refresh": "0.4.26",
22
+ "eslint-plugin-react-refresh": "0.5.0",
25
23
  "eslint-plugin-regexp": "3.0.0",
26
- "globals": "17.2.0",
24
+ "globals": "17.3.0",
27
25
  "typescript-eslint": "8.54.0"
28
26
  },
29
27
  "peerDependencies": {
30
28
  "eslint": "^9.39.2"
31
29
  },
32
30
  "devDependencies": {
33
- "eslint": "9.39.2"
31
+ "eslint": "10.0.0"
34
32
  },
35
33
  "scripts": {
36
34
  "lint": "eslint . --max-warnings 0",