-
-
Notifications
You must be signed in to change notification settings - Fork 6.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
chore: move to eslint flat config (#16743)
- v6.1.0-beta.0
- v6.0.11
- v6.0.10
- v6.0.9
- v6.0.8
- v6.0.7
- v6.0.6
- v6.0.5
- v6.0.4
- v6.0.3
- v6.0.2
- v6.0.1
- v6.0.0
- v6.0.0-beta.10
- v6.0.0-beta.9
- v6.0.0-beta.8
- v6.0.0-beta.7
- v6.0.0-beta.6
- v6.0.0-beta.5
- v6.0.0-beta.4
- v6.0.0-beta.3
- v6.0.0-beta.2
- v6.0.0-beta.1
- v6.0.0-beta.0
- v6.0.0-alpha.24
- v6.0.0-alpha.23
- v6.0.0-alpha.22
- v6.0.0-alpha.21
- v6.0.0-alpha.20
- v6.0.0-alpha.19
- v6.0.0-alpha.18
- v5.4.14
- v5.4.13
- v5.4.12
- v5.4.11
- v5.4.10
- v5.4.9
- v5.4.8
- v5.4.7
- v5.4.6
- v5.4.5
- v5.4.4
- v5.4.3
- v5.4.2
- v5.4.1
- v5.4.0
- v5.4.0-beta.1
- v5.4.0-beta.0
- v5.3.6
- v5.3.5
- v5.3.4
- v5.3.3
- v5.3.2
- v5.3.1
- v5.3.0
- v5.3.0-beta.2
- v5.3.0-beta.1
- v5.3.0-beta.0
- v5.2.14
- v5.2.13
- v5.2.12
- plugin-legacy@6.0.0
- plugin-legacy@5.4.3
- plugin-legacy@5.4.2
- plugin-legacy@5.4.1
- create-vite@6.1.1
- create-vite@6.1.0
- create-vite@6.0.1
- create-vite@6.0.0
- create-vite@5.5.5
- create-vite@5.5.4
- create-vite@5.5.3
- create-vite@5.5.2
- create-vite@5.5.1
- create-vite@5.5.0
- create-vite@5.4.0
- create-vite@5.3.0
Showing
9 changed files
with
341 additions
and
308 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,289 @@ | ||
// @ts-check | ||
import { builtinModules, createRequire } from 'node:module' | ||
import eslint from '@eslint/js' | ||
import pluginN from 'eslint-plugin-n' | ||
import * as pluginI from 'eslint-plugin-i' | ||
import pluginRegExp from 'eslint-plugin-regexp' | ||
import tsParser from '@typescript-eslint/parser' | ||
import tseslint from 'typescript-eslint' | ||
import globals from 'globals' | ||
|
||
const require = createRequire(import.meta.url) | ||
const pkg = require('./package.json') | ||
const pkgVite = require('./packages/vite/package.json') | ||
|
||
export default tseslint.config( | ||
{ | ||
ignores: [ | ||
'packages/create-vite/template-*', | ||
'**/dist/**', | ||
'**/fixtures/**', | ||
'**/playground-temp/**', | ||
'**/temp/**', | ||
'**/.vitepress/cache/**', | ||
'**/*.snap', | ||
], | ||
}, | ||
eslint.configs.recommended, | ||
...tseslint.configs.recommended, | ||
...tseslint.configs.stylistic, | ||
/** @type {any} */ (pluginRegExp.configs['flat/recommended']), | ||
{ | ||
name: 'main', | ||
languageOptions: { | ||
parser: tsParser, | ||
parserOptions: { | ||
sourceType: 'module', | ||
ecmaVersion: 2022, | ||
}, | ||
globals: { | ||
...globals.es2021, | ||
...globals.node, | ||
}, | ||
}, | ||
plugins: { | ||
n: pluginN, | ||
i: pluginI, | ||
}, | ||
rules: { | ||
'n/no-exports-assign': 'error', | ||
'n/no-unpublished-bin': 'error', | ||
'n/no-unsupported-features/es-builtins': 'error', | ||
'n/no-unsupported-features/node-builtins': 'error', | ||
'n/process-exit-as-throw': 'error', | ||
'n/hashbang': 'error', | ||
|
||
eqeqeq: ['warn', 'always', { null: 'never' }], | ||
'no-debugger': ['error'], | ||
'no-empty': ['warn', { allowEmptyCatch: true }], | ||
'no-process-exit': 'off', | ||
'no-useless-escape': 'off', | ||
'prefer-const': [ | ||
'warn', | ||
{ | ||
destructuring: 'all', | ||
}, | ||
], | ||
|
||
'n/no-missing-require': [ | ||
'error', | ||
{ | ||
// for try-catching yarn pnp | ||
allowModules: ['pnpapi', 'vite'], | ||
tryExtensions: ['.ts', '.js', '.jsx', '.tsx', '.d.ts'], | ||
}, | ||
], | ||
'n/no-extraneous-import': [ | ||
'error', | ||
{ | ||
allowModules: ['vite', 'less', 'sass', 'vitest', 'unbuild'], | ||
}, | ||
], | ||
'n/no-extraneous-require': [ | ||
'error', | ||
{ | ||
allowModules: ['vite'], | ||
}, | ||
], | ||
|
||
'@typescript-eslint/ban-ts-comment': 'error', | ||
'@typescript-eslint/ban-types': 'off', // TODO: we should turn this on in a new PR | ||
'@typescript-eslint/explicit-module-boundary-types': [ | ||
'error', | ||
{ allowArgumentsExplicitlyTypedAsAny: true }, | ||
], | ||
'@typescript-eslint/no-empty-function': [ | ||
'error', | ||
{ allow: ['arrowFunctions'] }, | ||
], | ||
'@typescript-eslint/no-empty-interface': 'off', | ||
'@typescript-eslint/no-explicit-any': 'off', // maybe we should turn this on in a new PR | ||
'no-extra-semi': 'off', | ||
'@typescript-eslint/no-extra-semi': 'off', // conflicts with prettier | ||
'@typescript-eslint/no-inferrable-types': 'off', | ||
'@typescript-eslint/no-unused-vars': 'off', // maybe we should turn this on in a new PR | ||
'@typescript-eslint/no-var-requires': 'off', | ||
'@typescript-eslint/consistent-type-imports': [ | ||
'error', | ||
{ prefer: 'type-imports', disallowTypeAnnotations: false }, | ||
], | ||
// disable rules set in @typescript-eslint/stylistic v6 that wasn't set in @typescript-eslint/recommended v5 and which conflict with current code | ||
// maybe we should turn them on in a new PR | ||
'@typescript-eslint/array-type': 'off', | ||
'@typescript-eslint/ban-tslint-comment': 'off', | ||
'@typescript-eslint/consistent-generic-constructors': 'off', | ||
'@typescript-eslint/consistent-indexed-object-style': 'off', | ||
'@typescript-eslint/consistent-type-definitions': 'off', | ||
'@typescript-eslint/prefer-for-of': 'off', | ||
'@typescript-eslint/prefer-function-type': 'off', | ||
|
||
'i/no-nodejs-modules': [ | ||
'error', | ||
{ allow: builtinModules.map((mod) => `node:${mod}`) }, | ||
], | ||
'i/no-duplicates': 'error', | ||
'i/order': 'error', | ||
'sort-imports': [ | ||
'error', | ||
{ | ||
ignoreCase: false, | ||
ignoreDeclarationSort: true, | ||
ignoreMemberSort: false, | ||
memberSyntaxSortOrder: ['none', 'all', 'multiple', 'single'], | ||
allowSeparatedGroups: false, | ||
}, | ||
], | ||
|
||
'regexp/no-contradiction-with-assertion': 'error', | ||
// in some cases using explicit letter-casing is more performant than the `i` flag | ||
'regexp/use-ignore-case': 'off', | ||
}, | ||
}, | ||
{ | ||
name: 'vite/globals', | ||
files: ['packages/**/*.?([cm])[jt]s?(x)'], | ||
ignores: ['**/__tests__/**'], | ||
rules: { | ||
'no-restricted-globals': ['error', 'require', '__dirname', '__filename'], | ||
}, | ||
}, | ||
{ | ||
name: 'vite/node', | ||
files: ['packages/vite/src/node/**/*.?([cm])[jt]s?(x)'], | ||
rules: { | ||
'no-console': ['error'], | ||
'n/no-restricted-require': [ | ||
'error', | ||
Object.keys(pkgVite.devDependencies).map((d) => ({ | ||
name: d, | ||
message: | ||
`devDependencies can only be imported using ESM syntax so ` + | ||
`that they are included in the rollup bundle. If you are trying to ` + | ||
`lazy load a dependency, use (await import('dependency')).default instead.`, | ||
})), | ||
], | ||
}, | ||
}, | ||
{ | ||
name: 'playground/enforce-esm', | ||
files: ['playground/**/*.?([cm])[jt]s?(x)'], | ||
ignores: [ | ||
'playground/ssr-resolve/**', | ||
'playground/**/*{commonjs,cjs}*/**', | ||
'playground/**/*{commonjs,cjs}*', | ||
'playground/**/*dep*/**', | ||
'playground/resolve/browser-module-field2/index.web.js', | ||
'playground/resolve/browser-field/**', | ||
'playground/tailwind/**', // blocked by https://github.com/postcss/postcss-load-config/issues/239 | ||
], | ||
rules: { | ||
'i/no-commonjs': 'error', | ||
}, | ||
}, | ||
{ | ||
name: 'playground/test', | ||
files: ['playground/**/__tests__/**/*.?([cm])[jt]s?(x)'], | ||
rules: { | ||
// engine field doesn't exist in playgrounds | ||
'n/no-unsupported-features/es-builtins': [ | ||
'error', | ||
{ | ||
version: pkg.engines.node, | ||
}, | ||
], | ||
'n/no-unsupported-features/node-builtins': [ | ||
'error', | ||
{ | ||
version: pkg.engines.node, | ||
// ideally we would like to allow all experimental features | ||
// https://github.com/eslint-community/eslint-plugin-n/issues/199 | ||
ignores: ['fetch'], | ||
}, | ||
], | ||
}, | ||
}, | ||
|
||
{ | ||
name: 'disables/vite/client', | ||
files: ['packages/vite/src/client/**/*.?([cm])[jt]s?(x)'], | ||
ignores: ['**/__tests__/**'], | ||
rules: { | ||
'n/no-unsupported-features/node-builtins': 'off', | ||
}, | ||
}, | ||
{ | ||
name: 'disables/vite/types', | ||
files: [ | ||
'packages/vite/src/types/**/*.?([cm])[jt]s?(x)', | ||
'packages/vite/scripts/**/*.?([cm])[jt]s?(x)', | ||
'**/*.spec.ts', | ||
], | ||
rules: { | ||
'n/no-extraneous-import': 'off', | ||
}, | ||
}, | ||
{ | ||
name: 'disables/create-vite/templates', | ||
files: [ | ||
'packages/create-vite/template-*/**/*.?([cm])[jt]s?(x)', | ||
'**/build.config.ts', | ||
], | ||
rules: { | ||
'no-undef': 'off', | ||
'n/no-missing-import': 'off', | ||
'n/no-extraneous-import': 'off', | ||
'n/no-extraneous-require': 'off', | ||
'@typescript-eslint/explicit-module-boundary-types': 'off', | ||
}, | ||
}, | ||
{ | ||
name: 'disables/playground', | ||
files: ['playground/**/*.?([cm])[jt]s?(x)', 'docs/**/*.?([cm])[jt]s?(x)'], | ||
rules: { | ||
'n/no-extraneous-import': 'off', | ||
'n/no-extraneous-require': 'off', | ||
'n/no-missing-import': 'off', | ||
'n/no-missing-require': 'off', | ||
'n/no-unsupported-features/es-builtins': 'off', | ||
'n/no-unsupported-features/node-builtins': 'off', | ||
'@typescript-eslint/explicit-module-boundary-types': 'off', | ||
'no-undef': 'off', | ||
'no-empty': 'off', | ||
'no-constant-condition': 'off', | ||
'@typescript-eslint/no-empty-function': 'off', | ||
}, | ||
}, | ||
{ | ||
name: 'disables/playground/tsconfig-json', | ||
files: [ | ||
'playground/tsconfig-json/**/*.?([cm])[jt]s?(x)', | ||
'playground/tsconfig-json-load-error/**/*.?([cm])[jt]s?(x)', | ||
], | ||
ignores: ['**/__tests__/**'], | ||
rules: { | ||
'@typescript-eslint/ban-ts-comment': 'off', | ||
}, | ||
}, | ||
{ | ||
name: 'disables/js', | ||
files: ['**/*.js', '**/*.mjs', '**/*.cjs'], | ||
rules: { | ||
'@typescript-eslint/explicit-module-boundary-types': 'off', | ||
}, | ||
}, | ||
{ | ||
name: 'disables/dts', | ||
files: ['**/*.d.ts'], | ||
rules: { | ||
'@typescript-eslint/triple-slash-reference': 'off', | ||
}, | ||
}, | ||
{ | ||
name: 'disables/test', | ||
files: ['**/__tests__/**/*.?([cm])[jt]s?(x)'], | ||
rules: { | ||
'no-console': 'off', | ||
'@typescript-eslint/ban-ts-comment': 'off', | ||
}, | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.