linter-bundle 2.25.1 → 2.25.2

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
@@ -6,7 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
- [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.25.1...HEAD)
9
+ [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.25.2...HEAD)
10
+
11
+ ## [2.25.2] - 2022-10-20
12
+
13
+ - [eslint/overrides-react] Revert: Added new [`react/no-object-type-as-default-prop`](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/rules/no-object-type-as-default-prop.md) rule
14
+
15
+ [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.25.1...v2.25.2)
10
16
 
11
17
  ## [2.25.1] - 2022-10-20
12
18
 
@@ -36,7 +42,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
36
42
  - [eslint] Make use of new [`unicorn/no-unnecessary-await`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-unnecessary-await.md) rule
37
43
  - [eslint] Make use of new [`unicorn/switch-case-braces`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/switch-case-braces.md) rule with option `"avoid"`
38
44
  - [eslint/overrides-jest] Added but disable new [`jest/no-restricted-jest-methods`](https://github.com/jest-community/eslint-plugin-jest/blob/main/docs/rules/no-restricted-jest-methods.md) rule
39
- - [eslint/overrides-react] Added new [`react/no-object-type-as-default-prop`](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/rules/no-object-type-as-default-prop.md) rule
40
45
  - [stylelint] Updated `stylelint` from `14.12.1` to `14.14.0`
41
46
  - [stylelint] Ignore `!default` annotation in [`annotation-no-unknown`](https://stylelint.io/user-guide/rules/annotation-no-unknown/) rule
42
47
 
@@ -164,7 +164,7 @@ module.exports = {
164
164
  'react/no-is-mounted': 'error',
165
165
  'react/no-multi-comp': 'error',
166
166
  'react/no-namespace': 'error',
167
- 'react/no-object-type-as-default-prop': 'error',
167
+ // 'react/no-object-type-as-default-prop': 'error',
168
168
  'react/no-redundant-should-component-update': 'error',
169
169
  'react/no-render-return-value': 'error',
170
170
  'react/no-set-state': 'off',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "linter-bundle",
3
- "version": "2.25.1",
3
+ "version": "2.25.2",
4
4
  "description": "Ready-to use bundle of linting tools, containing configurations for ESLint, stylelint and markdownlint.",
5
5
  "keywords": [
6
6
  "eslint",