@ornikar/eslint-config 18.11.0 → 18.12.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
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
+ # [18.12.0](https://github.com/ornikar/eslint-configs/compare/v18.11.0...v18.12.0) (2022-06-08)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * tests override extends from parent configs [no issue] ([#325](https://github.com/ornikar/eslint-configs/issues/325)) ([5364d72](https://github.com/ornikar/eslint-configs/commit/5364d72b10b105d6d6c1f8925578821a15db516c))
12
+
13
+
14
+ ### Features
15
+
16
+ * **eslint-config:** no-array-push-push [no issue] ([#324](https://github.com/ornikar/eslint-configs/issues/324)) ([88bc3d9](https://github.com/ornikar/eslint-configs/commit/88bc3d93c8ff2ff139ff7cb6f9c7adea8fb0390c))
17
+
18
+
19
+
20
+
21
+
6
22
  # [18.11.0](https://github.com/ornikar/eslint-configs/compare/v18.10.0...v18.11.0) (2022-06-07)
7
23
 
8
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ornikar/eslint-config",
3
- "version": "18.11.0",
3
+ "version": "18.12.0",
4
4
  "description": "eslint config files",
5
5
  "repository": {
6
6
  "type": "git",
@@ -34,5 +34,5 @@
34
34
  "eslint": "8.16.0",
35
35
  "prettier": "2.6.2"
36
36
  },
37
- "gitHead": "94f2317e02a558fb56955486b739314c32e9b7fd"
37
+ "gitHead": "7b75be7ac2f3b1a8e1e4a9c3c5ff47814675ae2c"
38
38
  }
package/rules/unicorn.js CHANGED
@@ -215,7 +215,7 @@ const formTree = shallow(tree.find(x => FormWithApiCall(x)).prop('children')());
215
215
  'unicorn/no-array-for-each': 'off',
216
216
 
217
217
  // https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-array-push-push.md
218
- 'unicorn/no-array-push-push': 'off',
218
+ 'unicorn/no-array-push-push': 'error',
219
219
 
220
220
  // https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-this-assignment.md
221
221
  'unicorn/no-this-assignment': 'off',
package/tests-override.js CHANGED
@@ -5,7 +5,7 @@ module.exports = {
5
5
  jest: true,
6
6
  },
7
7
 
8
- extends: ['.', './rules/jest'].map(require.resolve),
8
+ extends: ['./rules/jest'].map(require.resolve),
9
9
 
10
10
  rules: {
11
11
  // Allow to use devDependencies