linter-bundle 2.28.0 → 3.0.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 +40 -1
- package/README.md +2 -2
- package/eslint/index.js +934 -919
- package/eslint/overrides-javascript.js +1 -1
- package/eslint/overrides-jsdoc.js +2 -1
- package/eslint/overrides-storybook.js +1 -1
- package/lint.js +1 -1
- package/package.json +13 -13
- package/stylelint/index.js +7 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,7 +8,46 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
8
8
|
|
|
9
9
|
[Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.28.0...HEAD)
|
|
10
10
|
|
|
11
|
-
## [
|
|
11
|
+
## [3.0.0] - 2023-05-16
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- [general] The minimum required Node.js version is v16 now
|
|
16
|
+
- [eslint] Consider JavaScript files with the '.cjs' file extension (CommonJS Modules)
|
|
17
|
+
- [eslint] Consider TypeScript files with the '.mts' file extension (TypeScript ES Modules)
|
|
18
|
+
- [eslint] Consider TypeScript files with the '.cts' file extension (TypeScript CommonJS modules)
|
|
19
|
+
- [eslint] Move root rules into `overrides` to limit them to the files with the extensions `js`, `cjs`, `mjs`, `jsx`, `ts`, `cts`, `mts`, `tsx`, and to prevent that they are applied to `overrides` for non-JavaScript files (e.g. GraphQL schema files)
|
|
20
|
+
- [eslint] Updated `@typescript-eslint` from `5.59.2` to `5.59.6`
|
|
21
|
+
- [eslint] Updated `eslint` from `8.39.0` to `8.40.0`
|
|
22
|
+
- [eslint] Updated `eslint-plugin-jsdoc` from `43.2.0` to `44.2.4`
|
|
23
|
+
- [eslint] Updated `eslint-plugin-n` from `15.7.0` to `16.0.0`
|
|
24
|
+
- [eslint] Updated `eslint-plugin-unicorn` from `46.0.0` to `47.0.0`
|
|
25
|
+
- [eslint] Make use of new [`unicorn/prefer-blob-reading-methods`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-blob-reading-methods.md) rule
|
|
26
|
+
|
|
27
|
+
[Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.29.0...v3.0.0)
|
|
28
|
+
|
|
29
|
+
## [2.29.0] - 2023-05-05
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
|
|
33
|
+
- [stylelint] Fix `liberty/use-logical-spec` and `order/properties-order` issue with the `inset` property
|
|
34
|
+
|
|
35
|
+
### Changed
|
|
36
|
+
|
|
37
|
+
- [eslint] Updated `@typescript-eslint/utils` from `5.59.0` to `5.59.2`
|
|
38
|
+
- [eslint] Updated `eslint-plugin-jsdoc` from `43.0.7` to `43.2.0`
|
|
39
|
+
- [markdownlint] Updated `markdownlint-cli` from `0.33.0` to `0.34.0`
|
|
40
|
+
- [stylelint] Updated `stylelint` from `15.5.0` to `15.6.1`
|
|
41
|
+
- [stylelint] Updated `stylelint-scss` from `4.6.0` to `5.0.0`
|
|
42
|
+
|
|
43
|
+
### Added
|
|
44
|
+
|
|
45
|
+
- [eslint/overrides-jsdoc] Make use of new rule [`jsdoc/no-blank-blocks`](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-blank-blocks.md)
|
|
46
|
+
- [stylelint] Reactivate [color-function-notation](https://github.com/stylelint/stylelint/blob/main/lib/rules/color-function-notation/README.md) with option `'modern'` and `ignore: ['with-var-inside']`
|
|
47
|
+
|
|
48
|
+
[Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.28.0...v2.29.0)
|
|
49
|
+
|
|
50
|
+
## [2.28.0] - 2023-04-22
|
|
12
51
|
|
|
13
52
|
### Changed
|
|
14
53
|
|
package/README.md
CHANGED
|
@@ -61,7 +61,7 @@ If these plugins are maintained again, the plugins will also be used again.
|
|
|
61
61
|
|
|
62
62
|
## Install
|
|
63
63
|
|
|
64
|
-
Ensure you are using atleast Node.js version
|
|
64
|
+
Ensure you are using atleast Node.js version 16.
|
|
65
65
|
|
|
66
66
|
```sh
|
|
67
67
|
npm install linter-bundle --save-dev
|
|
@@ -278,7 +278,7 @@ Argument | Description | Example
|
|
|
278
278
|
Will execute:
|
|
279
279
|
|
|
280
280
|
```sh
|
|
281
|
-
eslint "./**/*.{js,mjs,jsx,ts,tsx}" --format unix
|
|
281
|
+
eslint "./**/*.{js,cjs,mjs,jsx,ts,cts,mts,tsx}" --format unix
|
|
282
282
|
```
|
|
283
283
|
|
|
284
284
|
Additionally, the environment variable `TIMING` is set to `10`.
|