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

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 +2 -0
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -274,6 +274,8 @@ module.exports = {
274
274
  { exceptAfterSingleLine: true },
275
275
  ],
276
276
  "no-console": ["error", { allow: ["info", "debug", "warn", "error"] }],
277
+ curly: ["error"],
278
+ "max-statements-per-line": ["error", { max: 1 }],
277
279
 
278
280
  // off
279
281
  "@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.4",
3
+ "version": "0.0.6",
4
4
  "description": "ESLint config of lenne.Tech for Vue",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -20,12 +20,12 @@
20
20
  "@typescript-eslint/eslint-plugin": "5.60.1",
21
21
  "eslint-config-prettier": "8.8.0",
22
22
  "eslint-plugin-import": "2.27.5",
23
+ "eslint-plugin-vitest": "0.2.6",
23
24
  "eslint-plugin-vue": "9.15.1"
24
25
  },
25
26
  "devDependencies": {
26
27
  "@nuxtjs/eslint-config-typescript": "12.0.0",
27
28
  "eslint": "8.43.0",
28
- "eslint-plugin-vitest": "^0.2.6",
29
29
  "watch": "1.0.2"
30
30
  }
31
31
  }