linter-bundle 3.0.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,20 @@ 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)
10
23
 
11
24
  ## [3.0.0] - 2023-05-16
12
25
 
package/eslint/index.js CHANGED
@@ -992,7 +992,7 @@ module.exports = {
992
992
  'unicorn/prefer-array-index-of': 'error',
993
993
  'unicorn/prefer-array-some': 'error',
994
994
  'unicorn/prefer-at': 'off', // @todo Disabled for now, since `at` is not supported by TypeScript type definitions yet.
995
- 'unicorn/prefer-blob-reading-methods': 'error',
995
+ 'unicorn/prefer-blob-reading-methods': 'off', // @todo Disabled for now, since it's only supported in Safari 14+. Activate in 2025
996
996
  'unicorn/prefer-code-point': 'error',
997
997
  'unicorn/prefer-date-now': 'error',
998
998
  'unicorn/prefer-default-parameters': 'error',
@@ -34,6 +34,7 @@ module.exports = {
34
34
  'jsdoc/check-values': 'error',
35
35
  'jsdoc/empty-tags': 'error',
36
36
  'jsdoc/implements-on-classes': 'error',
37
+ 'jsdoc/imports-as-dependencies': 'off', // @todo Doesn't cover `peerDependencies` and Node.js modules (like `child_process`) yet
37
38
  'jsdoc/match-description': 'error',
38
39
  'jsdoc/match-name': 'off',
39
40
  'jsdoc/multiline-blocks': ['error', { noSingleLineBlocks: true, singleLineTags: ['lends', 'type', 'typedef'], noFinalLineText: false }],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "linter-bundle",
3
- "version": "3.0.0",
3
+ "version": "3.1.0",
4
4
  "description": "Ready-to use bundle of linting tools, containing configurations for ESLint, stylelint and markdownlint.",
5
5
  "keywords": [
6
6
  "eslint",
@@ -40,17 +40,17 @@
40
40
  "check-outdated": "npx --yes -- check-outdated --ignore-pre-releases"
41
41
  },
42
42
  "dependencies": {
43
- "@typescript-eslint/eslint-plugin": "5.59.6",
44
- "@typescript-eslint/parser": "5.59.6",
45
- "@typescript-eslint/utils": "5.59.6",
46
- "eslint": "8.40.0",
43
+ "@typescript-eslint/eslint-plugin": "5.59.8",
44
+ "@typescript-eslint/parser": "5.59.8",
45
+ "@typescript-eslint/utils": "5.59.8",
46
+ "eslint": "8.42.0",
47
47
  "eslint-import-resolver-typescript": "3.5.5",
48
48
  "eslint-import-resolver-webpack": "0.13.2",
49
49
  "eslint-plugin-eslint-comments": "3.2.0",
50
50
  "eslint-plugin-functional": "5.0.8",
51
51
  "eslint-plugin-import": "2.27.5",
52
52
  "eslint-plugin-jest": "27.2.1",
53
- "eslint-plugin-jsdoc": "44.2.4",
53
+ "eslint-plugin-jsdoc": "46.2.4",
54
54
  "eslint-plugin-jsx-a11y": "6.7.1",
55
55
  "eslint-plugin-n": "16.0.0",
56
56
  "eslint-plugin-promise": "6.1.1",
@@ -60,7 +60,7 @@
60
60
  "markdownlint-cli": "0.34.0",
61
61
  "micromatch": "4.0.5",
62
62
  "postcss-scss": "4.0.6",
63
- "stylelint": "15.6.1",
63
+ "stylelint": "15.6.3",
64
64
  "stylelint-declaration-block-no-ignored-properties": "2.7.0",
65
65
  "stylelint-order": "6.0.3",
66
66
  "stylelint-scss": "5.0.0",
@@ -72,10 +72,10 @@
72
72
  "typescript": "^4.0.0"
73
73
  },
74
74
  "devDependencies": {
75
- "@types/eslint": "8.37.0",
75
+ "@types/eslint": "8.40.0",
76
76
  "@types/micromatch": "4.0.2",
77
- "@types/node": "20.1.5",
77
+ "@types/node": "20.2.5",
78
78
  "stylelint-find-new-rules": "4.1.0",
79
- "typescript": "5.0.4"
79
+ "typescript": "5.1.3"
80
80
  }
81
81
  }