@madgex/eslint-config-madgex 2.3.0 → 2.4.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 (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
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
+ # [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
+
8
+ ### Bug Fixes
9
+
10
+ - add some default ignores ([c5d58a7](https://github.com/wiley/madgex-eslint-config-madgex/commit/c5d58a79e9cb3a874a658556cd6690b3d5c86489))
11
+ - package dependancies lock major ([3a78107](https://github.com/wiley/madgex-eslint-config-madgex/commit/3a78107b7628713a4a1efac55e2f57a602e4445a))
12
+
13
+ ### Features
14
+
15
+ - add no-unused-vars & no-param-reassign allowances ([19a8f33](https://github.com/wiley/madgex-eslint-config-madgex/commit/19a8f334c7039bd9990545631a7450469758ddc4))
16
+ - enforce extra eslint rules ([d00f939](https://github.com/wiley/madgex-eslint-config-madgex/commit/d00f939939891b118c18c8dfaf8d46f5844bb8c3))
17
+
6
18
  # [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
19
 
8
20
  -fix!: eslint 9, using modern eslint-plugin-n setup
package/package.json CHANGED
@@ -1,27 +1,27 @@
1
1
  {
2
2
  "name": "@madgex/eslint-config-madgex",
3
- "version": "2.3.0",
3
+ "version": "2.4.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",
15
+ "@eslint/js": "^9.39.2",
16
+ "eslint": "^9.39.2",
18
17
  "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"
18
+ "eslint-plugin-n": "^17.23.2",
19
+ "eslint-plugin-prettier": "^5.5.5",
20
+ "globals": "^15",
21
+ "prettier": "^3.8.1"
23
22
  },
24
23
  "engines": {
25
24
  "node": ">=18"
26
- }
25
+ },
26
+ "gitHead": "0a2d2c26e7303483af175a958488648de0cd3696"
27
27
  }