Skip to content

Commit d84af6f

Browse files
committedApr 10, 2024·
feat(module): set checker configType to flat by default
1 parent 077271b commit d84af6f

File tree

3 files changed

+24
-5
lines changed

3 files changed

+24
-5
lines changed
 

‎docs/content/1.packages/0.module.md

+18-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ title: ESLint Module
55
All-in-one ESLint integration for Nuxt. It generates a project-aware [ESLint flat config](https://eslint.org/docs/latest/use/configure/configuration-files-new) and provides the ability to optionally run ESLint check along side the dev server.
66

77
:::callout{icon="i-ph-lightbulb-duotone"}
8-
This module is designed for the [new ESLint flat config format](https://eslint.org/docs/latest/use/configure/configuration-files-new), which will be the [default in ESLint v9](https://eslint.org/blog/2023/11/whats-coming-in-eslint-9.0.0/).
9-
The legacy `.eslintrc` config is **not supported** by this module. We highly recommand you to migrate over the flat config to be future-proof. If you still want to use the legacy format, you might need to manually config with [`@nuxt/eslint-config`](/packages/config), which will also lose some features like project-aware settings.
8+
This module is designed for the [new ESLint flat config format](https://eslint.org/docs/latest/use/configure/configuration-files-new) with is the [default format since ESLint v9](https://eslint.org/blog/2024/04/eslint-v9.0.0-released/). Flat config is supported since ESLint v8.45.0 so you can use any version of ESLint later than that. We recommend you to use the latest version of ESLint to get the best experience.
9+
10+
The legacy `.eslintrc` config is **not supported** by this module. We highly recommand you to migrate over the flat config to be future-proof. If you still want to use the legacy format, you might need to manually config with [`@nuxt/eslint-config`](/packages/config), which will missing some features like project-aware settings tho.
1011
:::
1112

1213
::read-more
@@ -185,6 +186,21 @@ npm i -D eslint-webpack-plugin
185186

186187
This enables a similar experience to using [`@nuxtjs/eslint-module`](https://github.com/nuxt-modules/eslint).
187188

189+
The checker runs in flat config mode by default. If you want to run it in legacy mode, you will need to set `configType` to `eslintrc`
190+
191+
```ts [nuxt.config.ts]
192+
export default defineNuxtConfig({
193+
modules: [
194+
'@nuxt/eslint'
195+
],
196+
eslint: {
197+
checker: {
198+
configType: 'eslintrc' // <--- (consider migrating to flat config if possible)
199+
}
200+
}
201+
})
202+
```
203+
188204
### Custom Config Presets
189205

190206
By default, this module installs the JS, TS and Vue plugins with their recommended rules. This might already be covered by your config presets, so in that case you can disable the default setup by setting the `standalone` option to `false`.

‎packages/module/src/modules/checker.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import { existsSync } from 'node:fs'
21
import { addVitePlugin, addWebpackPlugin, useLogger } from '@nuxt/kit'
3-
import { relative, resolve } from 'pathe'
2+
import { relative } from 'pathe'
43
import { watch } from 'chokidar'
54
import type { Nuxt } from '@nuxt/schema'
65
import type { ESLintPluginOptions as ViteCheckerOptions } from 'vite-plugin-eslint2'
@@ -28,7 +27,7 @@ export async function setupESLintChecker(moduleOptions: ModuleOptions, nuxt: Nux
2827
}
2928

3029
// When not specified, we try to detect the configType
31-
options.configType ||= (process.env.ESLINT_USE_FLAT_CONFIG || flatConfigFiles.some(file => existsSync(resolve(nuxt.options.rootDir, file))))
30+
options.configType ||= process.env.ESLINT_USE_FLAT_CONFIG !== 'false'
3231
? 'flat'
3332
: 'eslintrc'
3433

‎packages/module/src/types.ts

+4
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ export interface CheckerOptions {
3131

3232
/**
3333
* ESLint config type
34+
*
35+
* Default to `flat` unless env `ESLINT_USE_FLAT_CONFIG` is set to `false`
36+
*
37+
* @default 'flat'
3438
*/
3539
configType?: 'flat' | 'eslintrc'
3640

0 commit comments

Comments
 (0)
Please sign in to comment.