Skip to content

Commit 3ac4e28

Browse files
committed
disable broken eslint rules
1 parent 7c80b3d commit 3ac4e28

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

eslint.config.mjs

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11
// @ts-check
22
import { createConfigForNuxt } from '@nuxt/eslint-config/flat'
33

4-
// Run `npx @eslint/config-inspector` to inspect the resolved config interactively
54
export default createConfigForNuxt({
65
features: {
7-
// Rules for module authors
86
tooling: true,
9-
// Rules for formatting
107
stylistic: true,
118
},
129
dirs: {
13-
src: [
14-
'./playground',
15-
],
10+
src: ['./playground'],
11+
},
12+
}).append({
13+
rules: {
14+
'@stylistic/comma-dangle': 'off',
15+
'@stylistic/indent': 'off',
1616
},
1717
})
18-
.append(
19-
// your custom flat config here...
20-
)

0 commit comments

Comments
 (0)