1
1
mirror of https://github.com/theoludwig/eslint-config-conventions.git synced 2025-05-18 12:02:33 +02:00

Compare commits

...

9 Commits

Author SHA1 Message Date
8953d875b5
style: fix prettier 2025-05-10 20:50:44 +02:00
f45ab1dcbb
feat: add unicorn/no-accessor-recursion
BREAKING CHANGE: New rule introduced
2025-05-10 20:44:46 +02:00
7bbac61906
feat: add unicorn/consistent-assert
BREAKING CHANGE: New rule introduced
2025-05-10 20:43:16 +02:00
3aacbbeec4
feat: add unicorn/no-unnecessary-array-flat-depth
BREAKING CHANGE: New rule introduced
2025-05-10 20:41:18 +02:00
c4340efc6f
feat: add @typescript-eslint/no-unnecessary-type-conversion
BREAKING CHANGE: New rule introduced
2025-05-10 20:40:01 +02:00
851c468748
build(deps): update peer dependencies
BREAKING CHANGE: peerDependencies:
`eslint-plugin-unicorn@^59.0.0`
`typescript-eslint@^8.32.0`
2025-05-10 20:38:17 +02:00
892a3f8302
build(deps): update latest 2025-05-10 19:37:48 +02:00
620f6ce442
build(deps): update latest 2025-05-02 19:57:03 +02:00
1000c38cb2
feat: support eslint-plugin-unicorn@^59.0.0 2025-05-02 19:55:11 +02:00
4 changed files with 1348 additions and 389 deletions

View File

@ -37,11 +37,11 @@ More information about **formatting rules** vs **code-quality rules** can be fou
npm install --save-dev \
eslint@^9.21.0 \
eslint-plugin-promise@^7.2.1 \
eslint-plugin-unicorn@^57.0.0 \
eslint-plugin-unicorn@^59.0.0 \
eslint-plugin-import-x@^4.6.1 \
globals@^16.0.0 \
typescript@^5.7.3 \
typescript-eslint@^8.24.1 \
typescript@^5.8.3 \
typescript-eslint@^8.32.0 \
eslint-config-conventions@latest
```

View File

@ -252,6 +252,9 @@ export default typescriptESLint.config(
"unicorn/prefer-structured-clone": "error",
"unicorn/template-indent": "error",
"unicorn/consistent-existence-index-check": "error",
"unicorn/no-unnecessary-array-flat-depth": "error",
"unicorn/consistent-assert": "error",
"unicorn/no-accessor-recursion": "error",
"import-x/no-absolute-path": "error",
"import-x/no-webpack-loader-syntax": "error",
@ -346,6 +349,8 @@ export default typescriptESLint.config(
"no-useless-constructor": "off",
"@typescript-eslint/no-useless-constructor": "error",
"@typescript-eslint/no-unnecessary-type-conversion": "error",
"@typescript-eslint/no-unnecessary-template-expression": "error",
"@typescript-eslint/adjacent-overload-signatures": "error",

1708
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -47,22 +47,22 @@
"peerDependencies": {
"eslint": "^9.21.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-unicorn": "^57.0.0 || ^58.0.0",
"eslint-plugin-unicorn": "^59.0.0",
"eslint-plugin-import-x": "^4.6.1",
"globals": "^16.0.0",
"typescript-eslint": "^8.24.1"
"typescript-eslint": "^8.32.0"
},
"devDependencies": {
"@types/node": "22.13.13",
"globals": "16.0.0",
"@types/node": "22.15.17",
"globals": "16.1.0",
"editorconfig-checker": "6.0.1",
"eslint": "9.23.0",
"eslint": "9.26.0",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-unicorn": "58.0.0",
"eslint-plugin-import-x": "4.9.3",
"typescript-eslint": "8.28.0",
"eslint-plugin-unicorn": "59.0.1",
"eslint-plugin-import-x": "4.11.1",
"typescript-eslint": "8.32.0",
"prettier": "3.5.3",
"semantic-release": "24.2.3",
"typescript": "5.8.2"
"typescript": "5.8.3"
}
}