We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c80b3d commit 3ac4e28Copy full SHA for 3ac4e28
eslint.config.mjs
@@ -1,20 +1,17 @@
1
// @ts-check
2
import { createConfigForNuxt } from '@nuxt/eslint-config/flat'
3
4
-// Run `npx @eslint/config-inspector` to inspect the resolved config interactively
5
export default createConfigForNuxt({
6
features: {
7
- // Rules for module authors
8
tooling: true,
9
- // Rules for formatting
10
stylistic: true,
11
},
12
dirs: {
13
- src: [
14
- './playground',
15
- ],
+ src: ['./playground'],
+ },
+}).append({
+ rules: {
+ '@stylistic/comma-dangle': 'off',
+ '@stylistic/indent': 'off',
16
17
})
18
- .append(
19
- // your custom flat config here...
20
- )
0 commit comments