Skip to content

Commit 502d5b1

Browse files
committed
fix: disable 'vue/multi-word-component-names' for test/ dir
1 parent a84ad64 commit 502d5b1

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

eslint.config.mjs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import { createConfigForNuxt } from '@nuxt/eslint-config/flat'
33

44
export default createConfigForNuxt({
55
features: {
6-
tooling: true,
76
stylistic: true,
7+
tooling: true,
88
},
99
dirs: {
1010
src: [
@@ -13,5 +13,10 @@ export default createConfigForNuxt({
1313
},
1414
})
1515
.append(
16-
// your custom flat config here...
16+
{
17+
files: ['test/**'],
18+
rules: {
19+
'vue/multi-word-component-names': 'off',
20+
},
21+
},
1722
)

0 commit comments

Comments
 (0)