@svifty7/eslint-config 0.0.9 → 0.0.10
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.mjs +5 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1923,7 +1923,11 @@ async function vue(options = {}) {
|
|
|
1923
1923
|
"vue/prefer-separate-static-class": "off",
|
|
1924
1924
|
"vue/valid-v-slot": "off",
|
|
1925
1925
|
"vue/require-explicit-emits": "error",
|
|
1926
|
-
"vue/custom-event-name-casing": [
|
|
1926
|
+
"vue/custom-event-name-casing": [
|
|
1927
|
+
"error",
|
|
1928
|
+
"kebab-case",
|
|
1929
|
+
{ ignores: ["/^[a-z]+(?:-[a-z]+)*:[a-z]+(?:-[a-z]+)*$/u"] }
|
|
1930
|
+
],
|
|
1927
1931
|
"vue-a11y/anchor-has-content": "off",
|
|
1928
1932
|
"vue-a11y/click-events-have-key-events": "off",
|
|
1929
1933
|
"vue-a11y/mouse-events-have-key-events": "off",
|
package/dist/index.mjs
CHANGED
|
@@ -1894,7 +1894,11 @@ async function vue(options = {}) {
|
|
|
1894
1894
|
"vue/prefer-separate-static-class": "off",
|
|
1895
1895
|
"vue/valid-v-slot": "off",
|
|
1896
1896
|
"vue/require-explicit-emits": "error",
|
|
1897
|
-
"vue/custom-event-name-casing": [
|
|
1897
|
+
"vue/custom-event-name-casing": [
|
|
1898
|
+
"error",
|
|
1899
|
+
"kebab-case",
|
|
1900
|
+
{ ignores: ["/^[a-z]+(?:-[a-z]+)*:[a-z]+(?:-[a-z]+)*$/u"] }
|
|
1901
|
+
],
|
|
1898
1902
|
"vue-a11y/anchor-has-content": "off",
|
|
1899
1903
|
"vue-a11y/click-events-have-key-events": "off",
|
|
1900
1904
|
"vue-a11y/mouse-events-have-key-events": "off",
|
package/package.json
CHANGED