Skip to content

Commit

Permalink
fix: disable 'vue/multi-word-component-names' for test/ dir
Browse files Browse the repository at this point in the history
  • Loading branch information
DamianGlowala committed Aug 28, 2024
1 parent a84ad64 commit 502d5b1
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { createConfigForNuxt } from '@nuxt/eslint-config/flat'

export default createConfigForNuxt({
features: {
tooling: true,
stylistic: true,
tooling: true,
},
dirs: {
src: [
Expand All @@ -13,5 +13,10 @@ export default createConfigForNuxt({
},
})
.append(
// your custom flat config here...
{
files: ['test/**'],
rules: {
'vue/multi-word-component-names': 'off',
},
},
)

0 comments on commit 502d5b1

Please sign in to comment.