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 +8 -2
- package/eslint/index.js +1 -1
- package/eslint/overrides-javascript.js +2 -1
- package/package.json +1 -1
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.
|
|
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
|
@@ -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
|
]
|