You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And create an `eslint.config.mjs` file under **your project root**, with the following content:
57
57
58
58
```js [eslint.config.mjs]
59
-
importnuxtfrom'./.nuxt/eslint.config.mjs'
60
-
61
-
exportdefault [
62
-
...nuxt,
63
-
// your custom flat config here.
64
-
]
59
+
importwithNuxtfrom'./.nuxt/eslint.config.mjs'
60
+
61
+
exportdefaultwithNuxt(
62
+
// your custom flat configs go here, for example:
63
+
// {
64
+
// files: ['**/*.ts', '**/*.tsx'],
65
+
// rules: {
66
+
// 'no-console': 'off' // allow console.log in TypeScript files
67
+
// }
68
+
// },
69
+
// {
70
+
// ...
71
+
// }
72
+
)
65
73
```
66
74
75
+
`withNuxt` will takes rest arguments of flat configs and append them after Nuxt flat config items. You can use the [Nuxt DevTools](https://github.com/nuxt/devtools) panel to inspect the resolved ESLint flat config. Or run [`npx eslint-flat-config-viewer`](https://github.com/antfu/eslint-flat-config-viewer) manually to inspect.
76
+
67
77
## Receipts
68
78
69
79
### Work with VS Code
70
80
71
81
Note that ESLint Flat config is not yet enabled by default in the [ESLint VS Code extension](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint), you will need to enable it via the `eslint.experimental.useFlatConfig` to get ESLint working in VS Code. (This is likely not needed after ESLint v9).
72
82
73
-
```json
74
-
// .vscode/settings.json
83
+
```json [.vscode/settings.json]
75
84
{
76
85
// Enable the ESlint flat config support
77
86
"eslint.experimental.useFlatConfig": true
@@ -80,11 +89,11 @@ Note that ESLint Flat config is not yet enabled by default in the [ESLint VS Cod
80
89
81
90
### Use with Prettier
82
91
83
-
This module does not enable any stylistic/formatting rules by default. You can use Prettier alongside directly.
92
+
This module does not enable stylistic/formatting rules by default. You can use Prettier alongside directly.
84
93
85
94
### Use with ESLint Stylistic
86
95
87
-
If instead, you prefer to use ESLint for formatting as well, we also integrated [ESLint Stylistic](https://eslint.style/) to make it easy. You can opt-in by setting `config.stylistic` to `true` in the `eslint` module options.
96
+
If you prefer to use ESLint for formatting as well, we also integrated [ESLint Stylistic](https://eslint.style/) to make it easy. You can opt-in by setting `config.stylistic` to `true` in the `eslint` module options.
88
97
89
98
```ts [nuxt.config.ts]
90
99
exportdefaultdefineNuxtConfig({
@@ -168,17 +177,15 @@ This will make this module only generate the Nuxt-specific rules and disables, s
168
177
169
178
For example, with [`@antfu/eslint-config`](https://github.com/antfu/eslint-config):
You might also want to add a script entry to your `package.json:
61
60
62
61
```json [package.json]
@@ -67,6 +66,36 @@ You might also want to add a script entry to your `package.json:
67
66
}
68
67
```
69
68
69
+
### Customizing the Config
70
+
71
+
Note that `createConfigForNuxt()` returns `Promise<FlatConfig[]>`. ESLint allows you to run the promise directly to the default export. If you want to combine with other configs, you will need await and spread the result. For example:
The legacy config configures for TypeScript and Vue integrations for ESLint. It is unopinionated and static, that does not contains stylistic rules nor project-aware settings.
0 commit comments