@ornikar/eslint-config 22.6.0 → 22.7.1
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 +12 -0
- package/package.json +8 -8
- package/rules/security.js +1 -1
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
|
+
## <small>22.7.1 (2026-05-15)</small>
|
|
7
|
+
|
|
8
|
+
* feat(deps): update dependency eslint-config-prettier to v10 (#805) ([3aaf434](https://github.com/ornikar/eslint-configs/commit/3aaf434)), closes [#805](https://github.com/ornikar/eslint-configs/issues/805)
|
|
9
|
+
* feat(deps): update dependency eslint-plugin-jest to v29 (#807) ([78d0c97](https://github.com/ornikar/eslint-configs/commit/78d0c97)), closes [#807](https://github.com/ornikar/eslint-configs/issues/807)
|
|
10
|
+
* feat(deps): update dependency eslint-plugin-security to v4 (#810) ([8bb59a8](https://github.com/ornikar/eslint-configs/commit/8bb59a8)), closes [#810](https://github.com/ornikar/eslint-configs/issues/810)
|
|
11
|
+
* feat(deps): update dependency eslint-plugin-simple-import-sort to v13 (#811) ([7d8f602](https://github.com/ornikar/eslint-configs/commit/7d8f602)), closes [#811](https://github.com/ornikar/eslint-configs/issues/811)
|
|
12
|
+
* feat(deps): update dependency eslint-plugin-unicorn to v64 (#813) ([304e072](https://github.com/ornikar/eslint-configs/commit/304e072)), closes [#813](https://github.com/ornikar/eslint-configs/issues/813)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
## [22.6.0](https://github.com/ornikar/eslint-configs/compare/v22.5.1...v22.6.0) (2026-04-17)
|
|
7
19
|
|
|
8
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ornikar/eslint-config",
|
|
3
|
-
"version": "22.
|
|
3
|
+
"version": "22.7.1",
|
|
4
4
|
"description": "eslint config files",
|
|
5
5
|
"repository": {
|
|
6
6
|
"directory": "@ornikar/eslint-config",
|
|
@@ -16,20 +16,20 @@
|
|
|
16
16
|
"access": "public"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@ornikar/eslint-plugin-ornikar": "22.
|
|
19
|
+
"@ornikar/eslint-plugin-ornikar": "22.7.1",
|
|
20
20
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
21
|
-
"eslint-config-prettier": "^
|
|
21
|
+
"eslint-config-prettier": "^10.0.0",
|
|
22
22
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
23
23
|
"eslint-plugin-import": "^2.25.4",
|
|
24
|
-
"eslint-plugin-jest": "^
|
|
24
|
+
"eslint-plugin-jest": "^29.0.0",
|
|
25
25
|
"eslint-plugin-jsx-a11y": "^6.4.1",
|
|
26
26
|
"eslint-plugin-n": "^16.0.0",
|
|
27
|
-
"eslint-plugin-security": "^
|
|
28
|
-
"eslint-plugin-simple-import-sort": "^
|
|
29
|
-
"eslint-plugin-unicorn": "^
|
|
27
|
+
"eslint-plugin-security": "^4.0.0",
|
|
28
|
+
"eslint-plugin-simple-import-sort": "^13.0.0",
|
|
29
|
+
"eslint-plugin-unicorn": "^56.0.1"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"eslint": "^8.
|
|
32
|
+
"eslint": "^8.57.1",
|
|
33
33
|
"prettier": "^2.2.1"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
package/rules/security.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
module.exports = {
|
|
4
4
|
// https://github.com/nodesecurity/eslint-plugin-security
|
|
5
5
|
plugins: ['security'],
|
|
6
|
-
extends: ['plugin:security/recommended'],
|
|
6
|
+
extends: ['plugin:security/recommended-legacy'],
|
|
7
7
|
rules: {
|
|
8
8
|
'security/detect-buffer-noassert': 'error',
|
|
9
9
|
'security/detect-child-process': 'error',
|