@alexlit/config-eslint 55.0.1 → 55.2.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +1652 -0
  2. package/package.json +10 -10
  3. package/plugins/vue.js +7 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-eslint",
3
- "version": "55.0.1",
3
+ "version": "55.2.0",
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": "^2.0.0",
43
- "@typescript-eslint/eslint-plugin": "^5.44.0",
44
- "@typescript-eslint/parser": "^5.44.0",
43
+ "@typescript-eslint/eslint-plugin": "^5.45.0",
44
+ "@typescript-eslint/parser": "^5.45.0",
45
45
  "eslint": "^8.28.0",
46
46
  "eslint-config-airbnb-base": "^15.0.0",
47
47
  "eslint-config-prettier": "^8.5.0",
@@ -55,10 +55,10 @@
55
55
  "eslint-plugin-ext": "^0.1.0",
56
56
  "eslint-plugin-filenames": "^1.3.2",
57
57
  "eslint-plugin-import": "^2.26.0",
58
- "eslint-plugin-jest": "^27.1.5",
58
+ "eslint-plugin-jest": "^27.1.6",
59
59
  "eslint-plugin-jest-dom": "^4.0.3",
60
60
  "eslint-plugin-jest-formatting": "^3.1.0",
61
- "eslint-plugin-jsdoc": "^39.6.2",
61
+ "eslint-plugin-jsdoc": "^39.6.4",
62
62
  "eslint-plugin-jsx-a11y": "^6.6.1",
63
63
  "eslint-plugin-lit": "^1.6.1",
64
64
  "eslint-plugin-lit-a11y": "^2.3.0",
@@ -77,11 +77,11 @@
77
77
  "eslint-plugin-quasar": "^1.1.0",
78
78
  "eslint-plugin-react": "^7.31.11",
79
79
  "eslint-plugin-react-hooks": "^4.6.0",
80
- "eslint-plugin-regexp": "^1.10.0",
80
+ "eslint-plugin-regexp": "^1.11.0",
81
81
  "eslint-plugin-security": "^1.5.0",
82
82
  "eslint-plugin-simple-import-sort": "^8.0.0",
83
83
  "eslint-plugin-sonarjs": "^0.16.0",
84
- "eslint-plugin-sort-class-members": "^1.15.2",
84
+ "eslint-plugin-sort-class-members": "^1.16.0",
85
85
  "eslint-plugin-sort-destructure-keys": "^1.4.0",
86
86
  "eslint-plugin-sort-keys-fix": "^1.1.2",
87
87
  "eslint-plugin-spellcheck": "^0.0.20",
@@ -89,12 +89,12 @@
89
89
  "eslint-plugin-svelte3": "^4.0.0",
90
90
  "eslint-plugin-testing-library": "^5.9.1",
91
91
  "eslint-plugin-typescript-sort-keys": "^2.1.0",
92
- "eslint-plugin-unicorn": "^45.0.0",
92
+ "eslint-plugin-unicorn": "^45.0.1",
93
93
  "eslint-plugin-unused-imports": "^2.0.0",
94
- "eslint-plugin-vue": "^9.7.0",
94
+ "eslint-plugin-vue": "^9.8.0",
95
95
  "eslint-plugin-vuejs-accessibility": "^2.0.0",
96
96
  "eslint-plugin-vuetify": "^1.1.0",
97
- "eslint-plugin-wc": "^1.3.2",
97
+ "eslint-plugin-wc": "^1.4.0",
98
98
  "eslint-plugin-write-good-comments": "^0.1.4",
99
99
  "typescript": "^4.9.3"
100
100
  },
package/plugins/vue.js CHANGED
@@ -190,6 +190,13 @@ module.exports = {
190
190
 
191
191
  'vue/require-direct-export': 'off',
192
192
 
193
+ 'vue/require-prop-comment': [
194
+ 'warn',
195
+ {
196
+ type: 'JSDoc',
197
+ },
198
+ ],
199
+
193
200
  'vue/sort-keys': [
194
201
  'warn',
195
202
  'asc',