eslint-config-greenpie 8.1.0 → 8.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.
@@ -235,6 +235,7 @@ export default tsEslint.config({
235
235
  '@typescript-eslint/init-declarations': 'error',
236
236
  '@typescript-eslint/no-array-constructor': 'error',
237
237
  '@typescript-eslint/no-array-delete': 'error',
238
+ '@typescript-eslint/no-deprecated': 'error',
238
239
  '@typescript-eslint/no-dupe-class-members': 'error',
239
240
  '@typescript-eslint/no-empty-function': 'error',
240
241
  '@typescript-eslint/no-implied-eval': 'error',
package/configs/vue.js CHANGED
@@ -227,6 +227,8 @@ export default tsEslint.config(
227
227
  skipBlankLines: true
228
228
  }],
229
229
 
230
+ 'vue/max-props': 'off',
231
+ 'vue/max-template-depth': 'off',
230
232
  'vue/new-line-between-multi-line-property': 'error',
231
233
  'vue/next-tick-style': 'error',
232
234
  'vue/no-bare-strings-in-template': 'error',
@@ -275,6 +277,7 @@ export default tsEslint.config(
275
277
  'vue/prefer-prop-type-boolean-first': 'error',
276
278
  'vue/prefer-separate-static-class': 'error',
277
279
  'vue/prefer-true-attribute-shorthand': 'error',
280
+ 'vue/require-default-export': 'off',
278
281
  'vue/require-direct-export': 'error',
279
282
  'vue/require-emit-validator': 'error',
280
283
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-greenpie",
3
- "version": "8.1.0",
3
+ "version": "8.2.0",
4
4
  "description": "GreenPie's ESLint config file",
5
5
  "main": "index.js",
6
6
  "author": "Roman Nuritdinov (Ky6uk)",
@@ -29,11 +29,11 @@
29
29
  "vue"
30
30
  ],
31
31
  "peerDependencies": {
32
- "@stylistic/eslint-plugin-js": "^2.6.4",
33
- "@stylistic/eslint-plugin-plus": "^2.6.4",
34
- "@stylistic/eslint-plugin-ts": "^2.6.4",
35
- "eslint": "^9.9.0",
36
- "eslint-plugin-vue": "^9.27.0",
37
- "typescript-eslint": "^8.2.0"
32
+ "@stylistic/eslint-plugin-js": "^2.7.2",
33
+ "@stylistic/eslint-plugin-plus": "^2.7.2",
34
+ "@stylistic/eslint-plugin-ts": "^2.7.2",
35
+ "eslint": "^9.9.1",
36
+ "eslint-plugin-vue": "^9.28.0",
37
+ "typescript-eslint": "^8.4.0"
38
38
  }
39
39
  }