@tb-dev/eslint-config 6.0.2 → 6.0.4
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.
- package/dist/index.cjs +8 -1
- package/dist/index.js +8 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -148,7 +148,14 @@ async function vue(options) {
|
|
|
148
148
|
"vue/no-parsing-error": "error",
|
|
149
149
|
"vue/no-ref-as-operand": "error",
|
|
150
150
|
"vue/no-ref-object-reactivity-loss": "error",
|
|
151
|
-
"vue/no-reserved-component-names":
|
|
151
|
+
"vue/no-reserved-component-names": [
|
|
152
|
+
"error",
|
|
153
|
+
{
|
|
154
|
+
disallowVueBuiltInComponents: true,
|
|
155
|
+
disallowVue3BuiltInComponents: true,
|
|
156
|
+
htmlElementCaseSensitive: false
|
|
157
|
+
}
|
|
158
|
+
],
|
|
152
159
|
"vue/no-reserved-keys": "error",
|
|
153
160
|
"vue/no-reserved-props": "error",
|
|
154
161
|
"vue/no-required-prop-with-default": ["error", { autofix: true }],
|
package/dist/index.js
CHANGED
|
@@ -144,7 +144,14 @@ async function vue(options) {
|
|
|
144
144
|
"vue/no-parsing-error": "error",
|
|
145
145
|
"vue/no-ref-as-operand": "error",
|
|
146
146
|
"vue/no-ref-object-reactivity-loss": "error",
|
|
147
|
-
"vue/no-reserved-component-names":
|
|
147
|
+
"vue/no-reserved-component-names": [
|
|
148
|
+
"error",
|
|
149
|
+
{
|
|
150
|
+
disallowVueBuiltInComponents: true,
|
|
151
|
+
disallowVue3BuiltInComponents: true,
|
|
152
|
+
htmlElementCaseSensitive: false
|
|
153
|
+
}
|
|
154
|
+
],
|
|
148
155
|
"vue/no-reserved-keys": "error",
|
|
149
156
|
"vue/no-reserved-props": "error",
|
|
150
157
|
"vue/no-required-prop-with-default": ["error", { autofix: true }],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tb-dev/eslint-config",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.4",
|
|
4
4
|
"description": "ESLint config",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -22,13 +22,13 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@typescript-eslint/eslint-plugin": "^8.19.0",
|
|
24
24
|
"@typescript-eslint/parser": "^8.19.0",
|
|
25
|
-
"eslint-plugin-perfectionist": "^4.
|
|
25
|
+
"eslint-plugin-perfectionist": "^4.6.0",
|
|
26
26
|
"eslint-plugin-svelte": "^3.0.0-next.10",
|
|
27
27
|
"eslint-plugin-tailwindcss": "^3.17.5",
|
|
28
28
|
"eslint-plugin-unicorn": "^56.0.1",
|
|
29
29
|
"eslint-plugin-vue": "^9.32.0",
|
|
30
30
|
"globals": "^15.14.0",
|
|
31
|
-
"svelte": "^5.16.
|
|
31
|
+
"svelte": "^5.16.2",
|
|
32
32
|
"svelte-eslint-parser": "^1.0.0-next.6",
|
|
33
33
|
"vue-eslint-parser": "^9.4.3"
|
|
34
34
|
},
|