-
-
Notifications
You must be signed in to change notification settings - Fork 638
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(eslint): migrate to flat config and simplify (#2897)
* chore(package.json): update eslint and related dependencies, simplify lint scripts * chore(pnpm-lock.yaml): reflect changes in package.json * chore(eslint): migrate eslint to flat config, including removal of 'globals', 'prettier' and add 'ignores' * chore(*.js): add 'eslint-disable no-undef' * style(tests): remove unused 'eslint-disable' * chore(package.json): add 'eslint-import-resolver-typescript', remove 'eslint-import-resolver-alias' * chore(pnpm-lock.yaml): reflect changes in package.json * chore(eslint): simplify import-related config and sort rules * chore(package.json): add '@eslint/js' * chore(pnpm-lock.yaml): reflect changes in package.json * chore(eslint): remove unused 'rules', sort by the order 'plugins' were added and by name * chore(eslint): remove duplicate 'languageOptions' * chore(eslint): add 'react.configs.flat.recommended' * style(tests): add 'eslint-disable react/no-unscaped-entities' * chore(package.json): remove eslint-{config,plugin}-prettier * chore(pnpm-lock.yaml): reflect changes in package.json
- Loading branch information
Showing
18 changed files
with
500 additions
and
505 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
import eslint from '@eslint/js' | ||
import vitest from '@vitest/eslint-plugin' | ||
import importPlugin from 'eslint-plugin-import' | ||
import jestDom from 'eslint-plugin-jest-dom' | ||
import react from 'eslint-plugin-react' | ||
import reactCompiler from 'eslint-plugin-react-compiler' | ||
import reactHooks from 'eslint-plugin-react-hooks' | ||
import testingLibrary from 'eslint-plugin-testing-library' | ||
import tseslint from 'typescript-eslint' | ||
|
||
export default tseslint.config( | ||
{ | ||
ignores: ['dist/', 'examples/', 'website/'], | ||
}, | ||
eslint.configs.recommended, | ||
importPlugin.flatConfigs.recommended, | ||
tseslint.configs.recommended, | ||
react.configs.flat.recommended, | ||
react.configs.flat['jsx-runtime'], | ||
{ | ||
plugins: { | ||
'react-compiler': reactCompiler, | ||
'react-hooks': reactHooks, | ||
}, | ||
settings: { | ||
react: { | ||
version: 'detect', | ||
}, | ||
'import/resolver': { | ||
typescript: true, | ||
}, | ||
}, | ||
rules: { | ||
eqeqeq: 'error', | ||
curly: ['warn', 'multi-line', 'consistent'], | ||
'sort-imports': [ | ||
'error', | ||
{ | ||
ignoreDeclarationSort: true, | ||
}, | ||
], | ||
'import/no-unresolved': ['error', { commonjs: true, amd: true }], | ||
'import/named': 'off', | ||
'import/namespace': 'off', | ||
'import/no-named-as-default-member': 'off', | ||
'import/no-duplicates': 'error', | ||
'import/extensions': ['error', 'always'], | ||
'import/order': [ | ||
'error', | ||
{ | ||
alphabetize: { order: 'asc', caseInsensitive: true }, | ||
groups: [ | ||
'builtin', | ||
'external', | ||
'internal', | ||
'parent', | ||
'sibling', | ||
'index', | ||
'object', | ||
], | ||
'newlines-between': 'never', | ||
pathGroups: [ | ||
{ | ||
pattern: 'react', | ||
group: 'builtin', | ||
position: 'before', | ||
}, | ||
], | ||
pathGroupsExcludedImportTypes: ['builtin'], | ||
}, | ||
], | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
'@typescript-eslint/no-unused-vars': [ | ||
'warn', | ||
{ argsIgnorePattern: '^_', varsIgnorePattern: '^_' }, | ||
], | ||
'react-compiler/react-compiler': 'warn', | ||
...reactHooks.configs.recommended.rules, | ||
}, | ||
}, | ||
{ | ||
files: ['tests/**/*.{ts,tsx}'], | ||
...testingLibrary.configs['flat/react'], | ||
...jestDom.configs['flat/recommended'], | ||
...vitest.configs.recommended, | ||
rules: { | ||
'import/extensions': ['error', 'never'], | ||
'@typescript-eslint/no-unused-vars': 'off', | ||
'vitest/expect-expect': 'off', | ||
'vitest/consistent-test-it': [ | ||
'error', | ||
{ fn: 'it', withinDescribe: 'it' }, | ||
], | ||
}, | ||
}, | ||
{ | ||
files: ['*.js'], | ||
rules: { | ||
'@typescript-eslint/no-require-imports': '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
Oops, something went wrong.