@madgex/eslint-config-madgex 2.3.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/README.md +3 -3
  3. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -3,6 +3,26 @@
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
+
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)
15
+
16
+ ### Bug Fixes
17
+
18
+ - add some default ignores ([c5d58a7](https://github.com/wiley/madgex-eslint-config-madgex/commit/c5d58a79e9cb3a874a658556cd6690b3d5c86489))
19
+ - package dependancies lock major ([3a78107](https://github.com/wiley/madgex-eslint-config-madgex/commit/3a78107b7628713a4a1efac55e2f57a602e4445a))
20
+
21
+ ### Features
22
+
23
+ - add no-unused-vars & no-param-reassign allowances ([19a8f33](https://github.com/wiley/madgex-eslint-config-madgex/commit/19a8f334c7039bd9990545631a7450469758ddc4))
24
+ - enforce extra eslint rules ([d00f939](https://github.com/wiley/madgex-eslint-config-madgex/commit/d00f939939891b118c18c8dfaf8d46f5844bb8c3))
25
+
6
26
  # [2.0.0](https://github.com/wiley/madgex-eslint-config-madgex/compare/@madgex/eslint-config-madgex@1.4.1...@madgex/eslint-config-madgex@2.0.0) (2024-04-18)
7
27
 
8
28
  -fix!: eslint 9, using modern eslint-plugin-n setup
package/README.md CHANGED
@@ -5,12 +5,12 @@
5
5
  ## Install
6
6
 
7
7
  ```bash
8
- npm install eslint@9 @madgex/eslint-config-madgex -save-dev
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) v3.0.5+ (you might need to switch to pre-release version)
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": ">=18"
28
+ "node": ">=24"
29
29
  }
30
30
  },
31
31
  ...
package/package.json CHANGED
@@ -1,27 +1,27 @@
1
1
  {
2
2
  "name": "@madgex/eslint-config-madgex",
3
- "version": "2.3.0",
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",
7
7
  "scripts": {
8
8
  "build": "echo 'build is not required' || exit 0",
9
- "lint": "eslint --config index.js *.js",
10
- "test": "echo \"Error: no test specified\" && exit 1"
9
+ "lint": "eslint --config index.js *.js"
11
10
  },
12
11
  "keywords": [],
13
12
  "author": "James Wragg <james.wragg@madgex.com> (https://madgex.com/)",
14
13
  "license": "MIT",
15
14
  "peerDependencies": {
16
- "@eslint/js": ">=9",
17
- "eslint": ">=9",
18
- "eslint-config-prettier": "^9.1.0",
19
- "eslint-plugin-n": "^17.2.1",
20
- "eslint-plugin-prettier": "^5.1.3",
21
- "globals": ">=15",
22
- "prettier": ">=3"
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
+ "eslint-plugin-prettier": "^5.5.5",
20
+ "globals": "^17.3.0",
21
+ "prettier": "^3.8.1"
23
22
  },
24
23
  "engines": {
25
- "node": ">=18"
26
- }
24
+ "node": ">=22.16"
25
+ },
26
+ "gitHead": "150fbc70f1066716f52e3e7def725f6f9fad6ee8"
27
27
  }