linter-bundle 2.6.0 → 2.7.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,15 @@ 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.6.0...HEAD)
9
+ [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.7.0...HEAD)
10
+
11
+ ## [2.7.0] - 2022.02.16
12
+
13
+ - [eslint] Update `eslint-plugin-jest` from v26.1.0 to v26.1.1
14
+ - [stylelint] Update `stylelint` from v14.5.0 to v14.5.1
15
+ - [eslint] Activate `ignoreUsedVariables` option of [unicorn/prefer-export-from](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-export-from.md) rule
16
+
17
+ [Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.6.0...v2.7.0)
10
18
 
11
19
  ## [2.6.0] - 2022.02.14
12
20
 
package/eslint/index.js CHANGED
@@ -966,7 +966,7 @@ module.exports = {
966
966
  'unicorn/prefer-dom-node-dataset': 'off', // `setAttribute` is faster than `dataset`. See https://www.measurethat.net/Benchmarks/Show/7740/0/classname-vs-setattribute-vs-classlist-vs-dataset
967
967
  'unicorn/prefer-dom-node-remove': 'error',
968
968
  'unicorn/prefer-dom-node-text-content': 'error',
969
- 'unicorn/prefer-export-from': 'error',
969
+ 'unicorn/prefer-export-from': ['error', { ignoreUsedVariables: true }],
970
970
  'unicorn/prefer-includes': 'error',
971
971
  'unicorn/prefer-json-parse-buffer': 'error',
972
972
  'unicorn/prefer-keyboard-event-key': 'error',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "linter-bundle",
3
- "version": "2.6.0",
3
+ "version": "2.7.0",
4
4
  "description": "Ready-to use bundle of linting tools, containing configurations for ESLint, stylelint and markdownlint.",
5
5
  "keywords": [
6
6
  "eslint",
@@ -47,7 +47,7 @@
47
47
  "eslint-plugin-eslint-comments": "3.2.0",
48
48
  "eslint-plugin-functional": "4.2.0",
49
49
  "eslint-plugin-import": "2.25.4",
50
- "eslint-plugin-jest": "26.1.0",
50
+ "eslint-plugin-jest": "26.1.1",
51
51
  "eslint-plugin-jsdoc": "37.9.1",
52
52
  "eslint-plugin-jsx-a11y": "6.5.1",
53
53
  "eslint-plugin-node": "11.1.0",
@@ -57,7 +57,7 @@
57
57
  "eslint-plugin-unicorn": "40.1.0",
58
58
  "markdownlint-cli": "0.31.1",
59
59
  "postcss-scss": "4.0.3",
60
- "stylelint": "14.5.0",
60
+ "stylelint": "14.5.1",
61
61
  "stylelint-declaration-block-no-ignored-properties": "2.5.0",
62
62
  "stylelint-order": "5.0.0",
63
63
  "stylelint-scss": "4.1.0",
@@ -70,7 +70,7 @@
70
70
  },
71
71
  "devDependencies": {
72
72
  "@types/eslint": "8.4.1",
73
- "@types/node": "17.0.17",
73
+ "@types/node": "17.0.18",
74
74
  "stylelint-find-new-rules": "^3.0.4",
75
75
  "typescript": "4.5.5"
76
76
  }