We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0e8d86 commit 6e232f0Copy full SHA for 6e232f0
packages/eslint-config/src/flat/configs/nuxt.ts
@@ -12,6 +12,7 @@ export default function nuxt(options: NuxtESLintConfigOptions): Linter.Config[]
12
const fileSingleRoot = [
13
...(dirs.layouts?.map(layoutsDir => join(layoutsDir, `**/*.${GLOB_EXTS}`)) || []),
14
...(dirs.pages?.map(pagesDir => join(pagesDir, `**/*.${GLOB_EXTS}`)) || []),
15
+ ...(dirs.components?.map(componentsDir => join(componentsDir, `**/*.server.${GLOB_EXTS}`)) || []),
16
]
17
18
const configs: Linter.Config[] = []
0 commit comments