linter-bundle 2.29.0 → 3.1.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
@@ -6,7 +6,38 @@ 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.28.0...HEAD)
9
+ [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v3.1.0...HEAD)
10
+
11
+ ## [3.1.0] - 2023-06-05
12
+
13
+ ### Changed
14
+
15
+ - [eslint] Disabled [`unicorn/prefer-blob-reading-methods`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-blob-reading-methods.md) rule, as it's not widely supported yet
16
+ - [eslint] Updated `@typescript-eslint/utils` from `5.59.6` to `5.59.8`
17
+ - [eslint] Updated `eslint` from `8.40.0` to `8.42.0`
18
+ - [eslint] Updated `eslint-plugin-jsdoc` from `44.2.4` to `46.2.4`
19
+ - [stylelint] Updated `stylelint` from `15.6.1` to `15.6.3`
20
+ - [eslint/overrides-jsdoc] Added, but disabled new [`jsdoc/imports-as-dependencies`](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/imports-as-dependencies.md) rule, as it doesn't cover `peerDependencies` and Node.js modules (like `child_process`)
21
+
22
+ [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v3.0.0...v3.1.0)
23
+
24
+ ## [3.0.0] - 2023-05-16
25
+
26
+ ### Changed
27
+
28
+ - [general] The minimum required Node.js version is v16 now
29
+ - [eslint] Consider JavaScript files with the '.cjs' file extension (CommonJS Modules)
30
+ - [eslint] Consider TypeScript files with the '.mts' file extension (TypeScript ES Modules)
31
+ - [eslint] Consider TypeScript files with the '.cts' file extension (TypeScript CommonJS modules)
32
+ - [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)
33
+ - [eslint] Updated `@typescript-eslint` from `5.59.2` to `5.59.6`
34
+ - [eslint] Updated `eslint` from `8.39.0` to `8.40.0`
35
+ - [eslint] Updated `eslint-plugin-jsdoc` from `43.2.0` to `44.2.4`
36
+ - [eslint] Updated `eslint-plugin-n` from `15.7.0` to `16.0.0`
37
+ - [eslint] Updated `eslint-plugin-unicorn` from `46.0.0` to `47.0.0`
38
+ - [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
39
+
40
+ [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.29.0...v3.0.0)
10
41
 
11
42
  ## [2.29.0] - 2023-05-05
12
43
 
@@ -22,6 +53,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
22
53
  - [stylelint] Updated `stylelint` from `15.5.0` to `15.6.1`
23
54
  - [stylelint] Updated `stylelint-scss` from `4.6.0` to `5.0.0`
24
55
 
56
+ ### Added
57
+
25
58
  - [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)
26
59
  - [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']`
27
60
 
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 14.
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`.