@tb-dev/eslint-config 3.2.1 → 3.2.2
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 +5 -1
- package/dist/index.js +5 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -715,7 +715,11 @@ async function vue(options) {
|
|
|
715
715
|
],
|
|
716
716
|
"vue/component-api-style": ["error", ["script-setup"]],
|
|
717
717
|
"vue/component-definition-name-casing": ["error", "PascalCase"],
|
|
718
|
-
"vue/component-name-in-template-casing": [
|
|
718
|
+
"vue/component-name-in-template-casing": [
|
|
719
|
+
"error",
|
|
720
|
+
"kebab-case",
|
|
721
|
+
{ registeredComponentsOnly: false }
|
|
722
|
+
],
|
|
719
723
|
"vue/custom-event-name-casing": ["error", "kebab-case"],
|
|
720
724
|
"vue/define-emits-declaration": ["error", "type-based"],
|
|
721
725
|
"vue/define-macros-order": [
|
package/dist/index.js
CHANGED
|
@@ -692,7 +692,11 @@ async function vue(options) {
|
|
|
692
692
|
],
|
|
693
693
|
"vue/component-api-style": ["error", ["script-setup"]],
|
|
694
694
|
"vue/component-definition-name-casing": ["error", "PascalCase"],
|
|
695
|
-
"vue/component-name-in-template-casing": [
|
|
695
|
+
"vue/component-name-in-template-casing": [
|
|
696
|
+
"error",
|
|
697
|
+
"kebab-case",
|
|
698
|
+
{ registeredComponentsOnly: false }
|
|
699
|
+
],
|
|
696
700
|
"vue/custom-event-name-casing": ["error", "kebab-case"],
|
|
697
701
|
"vue/define-emits-declaration": ["error", "type-based"],
|
|
698
702
|
"vue/define-macros-order": [
|