Skip to content

Commit

Permalink
chore: lint setting
Browse files Browse the repository at this point in the history
  • Loading branch information
ubugeeei committed Aug 10, 2024
1 parent 718514c commit 19ab6bc
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import pluginVueA11y from "eslint-plugin-vuejs-accessibility";
import withNuxt from "./.nuxt/eslint.config.mjs";

export default withNuxt({
ignores: ["_legacy/*"]
}).append(
...pluginVueA11y.configs["flat/recommended"]
);
export default withNuxt({ ignores: ["_legacy/*"] })
.override(
"nuxt/vue/rules",
{ rules: { "vue/multi-word-component-names": "off" } }
).append(
...pluginVueA11y.configs["flat/recommended"]
);

0 comments on commit 19ab6bc

Please sign in to comment.