@madgex/eslint-config-madgex 2.4.0 → 3.0.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.
- package/CHANGELOG.md +8 -0
- package/README.md +3 -3
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.0.0](https://github.com/wiley/madgex-eslint-config-madgex/compare/@madgex/eslint-config-madgex@2.4.1...@madgex/eslint-config-madgex@3.0.0) (2026-02-23)
|
|
7
|
+
|
|
8
|
+
-chore!: eslint 10
|
|
9
|
+
|
|
10
|
+
### BREAKING CHANGE
|
|
11
|
+
|
|
12
|
+
- eslint 10, although not much to migrate https://eslint.org/docs/latest/use/migrate-to-10.0.0
|
|
13
|
+
|
|
6
14
|
# [2.4.0](https://github.com/wiley/madgex-eslint-config-madgex/compare/@madgex/eslint-config-madgex@2.0.0...@madgex/eslint-config-madgex@2.4.0) (2026-02-12)
|
|
7
15
|
|
|
8
16
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install eslint@
|
|
8
|
+
npm install eslint@10 @madgex/eslint-config-madgex -save-dev
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## VSCode extension
|
|
12
12
|
|
|
13
|
-
Use the official VSCode [ESLint Extension](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint)
|
|
13
|
+
Use the official VSCode [ESLint Extension](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) v 3.0.21+
|
|
14
14
|
|
|
15
15
|
## Usage
|
|
16
16
|
|
|
@@ -25,7 +25,7 @@ Use the official VSCode [ESLint Extension](https://marketplace.visualstudio.com/
|
|
|
25
25
|
"type": "module", // "module" (ESM), or "commonjs" - you cant use both
|
|
26
26
|
{
|
|
27
27
|
"engines": {
|
|
28
|
-
"node": ">=
|
|
28
|
+
"node": ">=24"
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
...
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@madgex/eslint-config-madgex",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "Madgex ESLint config - based on eslint-config-airbnb",
|
|
6
6
|
"main": "index.js",
|
|
@@ -12,16 +12,16 @@
|
|
|
12
12
|
"author": "James Wragg <james.wragg@madgex.com> (https://madgex.com/)",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@eslint/js": "^
|
|
16
|
-
"eslint": "^
|
|
17
|
-
"eslint-config-prettier": "^
|
|
18
|
-
"eslint-plugin-n": "^17.
|
|
15
|
+
"@eslint/js": "^10.0.1",
|
|
16
|
+
"eslint": "^10.0.1",
|
|
17
|
+
"eslint-config-prettier": "^10.1.8",
|
|
18
|
+
"eslint-plugin-n": "^17.24.0",
|
|
19
19
|
"eslint-plugin-prettier": "^5.5.5",
|
|
20
|
-
"globals": "^
|
|
20
|
+
"globals": "^17.3.0",
|
|
21
21
|
"prettier": "^3.8.1"
|
|
22
22
|
},
|
|
23
23
|
"engines": {
|
|
24
|
-
"node": ">=
|
|
24
|
+
"node": ">=22.16"
|
|
25
25
|
},
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "150fbc70f1066716f52e3e7def725f6f9fad6ee8"
|
|
27
27
|
}
|