We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 718514c commit 19ab6bcCopy full SHA for 19ab6bc
eslint.config.mjs
@@ -1,8 +1,10 @@
1
import pluginVueA11y from "eslint-plugin-vuejs-accessibility";
2
import withNuxt from "./.nuxt/eslint.config.mjs";
3
4
-export default withNuxt({
5
- ignores: ["_legacy/*"]
6
-}).append(
7
- ...pluginVueA11y.configs["flat/recommended"]
8
-);
+export default withNuxt({ ignores: ["_legacy/*"] })
+ .override(
+ "nuxt/vue/rules",
+ { rules: { "vue/multi-word-component-names": "off" } }
+ ).append(
9
+ ...pluginVueA11y.configs["flat/recommended"]
10
+ );
0 commit comments