@byloth/eslint-config-nuxt 3.2.0-rc.1 → 3.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 (2) hide show
  1. package/index.mjs +4 -29
  2. package/package.json +3 -3
package/index.mjs CHANGED
@@ -25,42 +25,17 @@ export default [...eslintTs, ...eslintVue, {
25
25
  "no-undef": "off",
26
26
  "no-unreachable": "off",
27
27
  "no-unsafe-negation": "off",
28
- "no-with": "off"
29
- }
30
- }, {
31
- files: ["**/*.vue"],
32
- rules: {
28
+ "no-with": "off",
29
+
33
30
  "vue/multiline-html-element-content-newline": ["error", {
34
31
  ignoreWhenEmpty: true,
35
- ignores: [
36
- "pre",
37
- "textarea",
38
- "router-link",
39
- "RouterLink",
40
- "nuxt-link",
41
- "NuxtLink",
42
- "u-link",
43
- "ULink",
44
-
45
- ...INLINE_ELEMENTS
46
- ],
32
+ ignores: ["pre", "textarea", "router-link", "RouterLink", "nuxt-link", "NuxtLink", "u-link", "ULink", ...INLINE_ELEMENTS],
47
33
  allowEmptyLines: false
48
34
  }],
49
35
  "vue/singleline-html-element-content-newline": ["error", {
50
36
  ignoreWhenNoAttributes: true,
51
37
  ignoreWhenEmpty: true,
52
- ignores: [
53
- "pre",
54
- "textarea",
55
- "router-link",
56
- "RouterLink",
57
- "nuxt-link",
58
- "NuxtLink",
59
- "u-link",
60
- "ULink",
61
-
62
- ...INLINE_ELEMENTS
63
- ],
38
+ ignores: ["pre", "textarea", "router-link", "RouterLink", "nuxt-link", "NuxtLink", "u-link", "ULink", ...INLINE_ELEMENTS],
64
39
  externalIgnores: []
65
40
  }],
66
41
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byloth/eslint-config-nuxt",
3
- "version": "3.2.0-rc.1",
3
+ "version": "3.2.0",
4
4
  "description": "A collection of some common sense linting rules for Nuxt.js projects. ✔",
5
5
  "keywords": [
6
6
  "ESLint",
@@ -32,7 +32,7 @@
32
32
  "main": "index.mjs",
33
33
  "types": "index.d.ts",
34
34
  "dependencies": {
35
- "@byloth/eslint-config-typescript": "3.2.0-rc.1",
36
- "@byloth/eslint-config-vue": "3.2.0-rc.1"
35
+ "@byloth/eslint-config-typescript": "3.2.0",
36
+ "@byloth/eslint-config-vue": "3.2.0"
37
37
  }
38
38
  }