mirror of
https://github.com/theoludwig/eslint-config-conventions.git
synced 2025-09-11 23:09:27 +02:00
feat!: add support for ESLint v9
Fixes #2 BREAKING CHANGE: peerDependencies: `eslint@^9.12.0` `eslint-plugin-promise@^7.1.0` `eslint-plugin-unicorn@^56.0.0` `globals@^15.10.0` `typescript-eslint@^8.8.0` BREAKING CHANGE: Node.js >= 20.9.0
This commit is contained in:
36
package.json
36
package.json
@@ -22,44 +22,46 @@
|
||||
"code quality",
|
||||
"conventions"
|
||||
],
|
||||
"main": "index.js",
|
||||
"main": "eslint.config.js",
|
||||
"types": "index.d.ts",
|
||||
"type": "module",
|
||||
"files": [
|
||||
"index.js",
|
||||
".eslintrc.json"
|
||||
"eslint.config.js",
|
||||
"index.d.ts"
|
||||
],
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
"provenance": true
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0"
|
||||
"node": ">=20.9.0"
|
||||
},
|
||||
"scripts": {
|
||||
"lint:editorconfig": "editorconfig-checker",
|
||||
"lint:markdown": "markdownlint-cli2",
|
||||
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --config eslintrc.json",
|
||||
"lint:eslint": "eslint . --max-warnings 0 --config eslint.config.mjs",
|
||||
"lint:prettier": "prettier . --check",
|
||||
"inspect": "eslint --inspect-config",
|
||||
"test": "node --test",
|
||||
"release": "semantic-release"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"eslint": "^8.57.0",
|
||||
"eslint-plugin-promise": "^7.0.0",
|
||||
"eslint-plugin-unicorn": "^55.0.0"
|
||||
"eslint": "^9.12.0",
|
||||
"eslint-plugin-promise": "^7.1.0",
|
||||
"eslint-plugin-unicorn": "^56.0.0",
|
||||
"globals": "^15.10.0",
|
||||
"typescript-eslint": "^8.8.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/eslint": "8.56.12",
|
||||
"@types/eslint__js": "8.42.3",
|
||||
"@types/node": "22.7.4",
|
||||
"@typescript-eslint/eslint-plugin": "8.7.0",
|
||||
"@typescript-eslint/parser": "8.7.0",
|
||||
"globals": "15.10.0",
|
||||
"editorconfig-checker": "6.0.0",
|
||||
"eslint": "8.57.1",
|
||||
"eslint": "9.12.0",
|
||||
"eslint-plugin-promise": "7.1.0",
|
||||
"eslint-plugin-unicorn": "55.0.0",
|
||||
"markdownlint-cli2": "0.14.0",
|
||||
"markdownlint-rule-relative-links": "3.0.0",
|
||||
"eslint-plugin-unicorn": "56.0.0",
|
||||
"typescript-eslint": "8.8.0",
|
||||
"prettier": "3.3.3",
|
||||
"semantic-release": "23.1.1",
|
||||
"typescript": "5.6.2"
|
||||
"typescript": "5.5.4"
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user