@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 CHANGED
@@ -58,6 +58,7 @@ If you still use some configs from the legacy eslintrc format, you can use the [
58
58
  ```js
59
59
  // eslint.config.js
60
60
  import { FlatCompat } from '@eslint/eslintrc';
61
+
61
62
  import configure from '@svifty7/eslint-config';
62
63
 
63
64
  const compat = new FlatCompat();
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": ["error", "kebab-case"],
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",