@lenne.tech/eslint-config-vue 0.0.6 → 0.0.8

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 (2) hide show
  1. package/index.js +10 -0
  2. package/package.json +2 -1
package/index.js CHANGED
@@ -276,6 +276,16 @@ module.exports = {
276
276
  "no-console": ["error", { allow: ["info", "debug", "warn", "error"] }],
277
277
  curly: ["error"],
278
278
  "max-statements-per-line": ["error", { max: 1 }],
279
+ "sort-imports": [
280
+ "error",
281
+ {
282
+ ignoreCase: false,
283
+ ignoreDeclarationSort: true,
284
+ ignoreMemberSort: false,
285
+ memberSyntaxSortOrder: ["none", "all", "multiple", "single"],
286
+ allowSeparatedGroups: false,
287
+ },
288
+ ],
279
289
 
280
290
  // off
281
291
  "@typescript-eslint/consistent-indexed-object-style": "off",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lenne.tech/eslint-config-vue",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
4
4
  "description": "ESLint config of lenne.Tech for Vue",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -18,6 +18,7 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@typescript-eslint/eslint-plugin": "5.60.1",
21
+ "@typescript-eslint/parser": "5.61.0",
21
22
  "eslint-config-prettier": "8.8.0",
22
23
  "eslint-plugin-import": "2.27.5",
23
24
  "eslint-plugin-vitest": "0.2.6",