@svifty7/eslint-config 0.0.8 → 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/README.md +1 -0
- package/dist/index.cjs +5 -1
- package/dist/index.d.cts +579 -202
- package/dist/index.d.mts +579 -202
- package/dist/index.mjs +5 -1
- package/package.json +19 -19
package/README.md
CHANGED
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",
|