linter-bundle 2.8.0 → 2.8.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 CHANGED
@@ -6,13 +6,19 @@ 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.8.0...HEAD)
9
+ [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.8.1...HEAD)
10
+
11
+ ## [2.8.1] - 2022.02.19
12
+
13
+ - [eslint/overrides-javascript] Use [`unicorn/text-encoding-identifier-case`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/text-encoding-identifier-case.md) rule, only in JavaScript files.
14
+
15
+ [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.8.0...v2.8.1)
10
16
 
11
17
  ## [2.8.0] - 2022.02.18
12
18
 
13
19
  - [eslint] Update `eslint-plugin-jsdoc` from v37.9.1 to v37.9.4
14
20
  - [eslint] Update `eslint-plugin-unicorn` from v40.1.0 to v41.0.0
15
- - [eslint] Make use of [`unicorn/text-encoding-identifier-case`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/text-encoding-identifier-case.md) rule
21
+ - [eslint] Make use of new [`unicorn/text-encoding-identifier-case`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/text-encoding-identifier-case.md) rule
16
22
  - [stylelint] Fixed disabling of [`function-no-unknown`](https://github.com/stylelint/stylelint/blob/main/lib/rules/function-no-unknown/README.md) rule, because of false positives
17
23
 
18
24
  [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.7.0...v2.8.0)
package/eslint/index.js CHANGED
@@ -1005,7 +1005,7 @@ module.exports = {
1005
1005
  }
1006
1006
  }],
1007
1007
  'unicorn/template-indent': 'error',
1008
- 'unicorn/text-encoding-identifier-case': 'error',
1008
+ 'unicorn/text-encoding-identifier-case': 'off',
1009
1009
  'unicorn/throw-new-error': 'error'
1010
1010
  }
1011
1011
  };
@@ -109,7 +109,8 @@ module.exports = {
109
109
  'unicorn/no-process-exit': 'off', // node/no-process-exit
110
110
  'unicorn/prefer-module': 'off', // @todo Requires Node.js v13.2. Activate in 2023
111
111
  'unicorn/prefer-node-protocol': 'off', // @todo Requires Node.js v16. Activate in 2025
112
- 'unicorn/prevent-abbreviations': ['error', { ignore: ['args', 'dev', 'env', 'i', 'j', 'i18n', 'pkg', 'ref', 'Ref', 'req', 'res', 'setupDevServerMiddleware'] }]
112
+ 'unicorn/prevent-abbreviations': ['error', { ignore: ['args', 'dev', 'env', 'i', 'j', 'i18n', 'pkg', 'ref', 'Ref', 'req', 'res', 'setupDevServerMiddleware'] }],
113
+ 'unicorn/text-encoding-identifier-case': 'off'
113
114
  }
114
115
  }
115
116
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "linter-bundle",
3
- "version": "2.8.0",
3
+ "version": "2.8.1",
4
4
  "description": "Ready-to use bundle of linting tools, containing configurations for ESLint, stylelint and markdownlint.",
5
5
  "keywords": [
6
6
  "eslint",