@cuiqg/eslint-config 2.8.12 → 2.8.13

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/dist/index.mjs +5 -1
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -480,6 +480,10 @@ async function vue(options = {}) {
480
480
  "vue/define-props-declaration": "error",
481
481
  "vue/define-props-destructuring": ["error", { destructure: "always" }],
482
482
  "vue/enforce-style-attribute": ["error", { allow: ["scoped", "plain"] }],
483
+ "vue/max-attributes-per-line": ["error", {
484
+ "singleline": { "max": 1 },
485
+ "multiline": { "max": 1 }
486
+ }],
483
487
  "vue/html-button-has-type": "error",
484
488
  "vue/html-end-tags": "error",
485
489
  "vue/jsx-uses-vars": "error",
@@ -542,7 +546,7 @@ async function vue(options = {}) {
542
546
  "vue/no-undef-properties": "error",
543
547
  "vue/no-unused-components": "error",
544
548
  "vue/no-unused-emit-declarations": "error",
545
- "vue/no-unused-vars": "error",
549
+ "vue/no-unused-vars": ["error", { ignorePattern: "^_" }],
546
550
  "vue/no-use-computed-property-like-method": "error",
547
551
  "vue/no-use-v-else-with-v-for": "error",
548
552
  "vue/no-use-v-if-with-v-for": "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cuiqg/eslint-config",
3
- "version": "2.8.12",
3
+ "version": "2.8.13",
4
4
  "description": "Eslint config for @cuiqg",
5
5
  "keywords": [
6
6
  "eslint-config"