@alexlit/config-eslint 43.2.1 → 43.3.2

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/.eslintrc.js CHANGED
@@ -95,6 +95,13 @@ module.exports = defineConfig({
95
95
  'global-require': 'off',
96
96
  },
97
97
  },
98
+ {
99
+ files: ['**/store/**/*', '**/vuex/**/*', '**/pinia/**/*'],
100
+
101
+ rules: {
102
+ 'no-param-reassign': 'off',
103
+ },
104
+ },
98
105
  ],
99
106
 
100
107
  parserOptions: {
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [43.3.2](https://github.com/alex-lit/config-eslint/compare/v43.3.1...v43.3.2) (2022-03-25)
2
+
3
+ ## [43.3.1](https://github.com/alex-lit/config-eslint/compare/v43.3.0...v43.3.1) (2022-03-24)
4
+
5
+ # [43.3.0](https://github.com/alex-lit/config-eslint/compare/v43.2.1...v43.3.0) (2022-03-22)
6
+
1
7
  ## [43.2.1](https://github.com/alex-lit/config-eslint/compare/v43.2.0...v43.2.1) (2022-03-21)
2
8
 
3
9
  # [43.2.0](https://github.com/alex-lit/config-eslint/compare/v43.1.0...v43.2.0) (2022-03-17)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-eslint",
3
- "version": "43.2.1",
3
+ "version": "43.3.2",
4
4
  "private": false,
5
5
  "description": "eslint config",
6
6
  "keywords": [
@@ -40,8 +40,8 @@
40
40
  },
41
41
  "dependencies": {
42
42
  "@intlify/eslint-plugin-vue-i18n": "^1.4.0",
43
- "@typescript-eslint/eslint-plugin": "^5.15.0",
44
- "@typescript-eslint/parser": "^5.15.0",
43
+ "@typescript-eslint/eslint-plugin": "^5.16.0",
44
+ "@typescript-eslint/parser": "^5.16.0",
45
45
  "eslint": "^8.11.0",
46
46
  "eslint-config-airbnb-base": "^15.0.0",
47
47
  "eslint-config-prettier": "^8.5.0",
@@ -55,7 +55,7 @@
55
55
  "eslint-plugin-ext": "^0.1.0",
56
56
  "eslint-plugin-filenames": "^1.3.2",
57
57
  "eslint-plugin-import": "^2.25.4",
58
- "eslint-plugin-jest": "^26.1.2",
58
+ "eslint-plugin-jest": "^26.1.3",
59
59
  "eslint-plugin-jest-dom": "^4.0.1",
60
60
  "eslint-plugin-jest-formatting": "^3.1.0",
61
61
  "eslint-plugin-jsdoc": "^38.0.6",
@@ -95,7 +95,7 @@
95
95
  "eslint-plugin-vuetify": "^1.1.0",
96
96
  "eslint-plugin-wc": "^1.3.2",
97
97
  "eslint-plugin-write-good-comments": "^0.1.4",
98
- "typescript": "^4.6.2"
98
+ "typescript": "^4.6.3"
99
99
  },
100
100
  "devDependencies": {
101
101
  "@alexlit/lint-kit": "latest"
package/plugins/import.js CHANGED
@@ -13,11 +13,12 @@ module.exports = {
13
13
  {
14
14
  files: [
15
15
  '**/.*/**',
16
+ '**/types/**',
17
+ '*.d.ts',
16
18
  '*.stories.js',
17
19
  '*.stories.ts',
18
20
  '.*.js',
19
21
  '.*.ts',
20
- '*.d.ts',
21
22
  ],
22
23
 
23
24
  rules: {
@@ -65,7 +66,7 @@ module.exports = {
65
66
  ],
66
67
  },
67
68
 
68
- node: { extensions: ['.mjs', '.js', '.json', '.ts', '.d.ts'] },
69
+ node: { extensions: ['.d.ts', '.js', '.json', '.mjs', '.mts', '.ts'] },
69
70
  },
70
71
  },
71
72
  };