-
-
Notifications
You must be signed in to change notification settings - Fork 267
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 (#1023)
* chore(package.json): update related eslint library, update script for eslint.config.js * chore(pnpm-lock.yaml): reflect changes in package.json * chore(eslint): migrate eslint configuration .eslintrc.json to eslint.config.js * style(tests): remove unused eslint-disable * chore(eslint): change 'js' to 'mjs' * chore(package.json): remove '-c eslint.config.js' in 'lint' scripts * chore(package.json): simplify 'lint' scripts * chore(eslint): add 'dist/**', 'examples/**', 'website/**' in 'ignores' * chore(package.json): remove 'globals' library * chore(pnpm-lock.yaml): reflect changes in package.json * chore(eslint): remove 'globals' config * chore(rollup): add 'eslint-disable no-undef' * chore(eslint): add 'recommended' plugins, sort, and remove unused rules * chore(eslint): remove duplicate 'languageOptions' * 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 settings 'import/resolver' * chore(eslint): remove 'import/extensions', 'import/parsers' to simplify * chore(package.json): update eslint and related dependencies * chore(pnpm-lock.yaml): reflect changes in package.json * chore(package.json): remove eslint-{config,plugin}-prettier * chore(pnpm-lock.yaml): reflect changes in package.json * chore(eslint): simplify 'ignores' * chore(package.json): add '@eslint/js' * chore(pnpm-lock.yaml): reflect changes in package.json
- Loading branch information
Showing
6 changed files
with
1,180 additions
and
574 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
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: ['src/vanilla/utils/proxyMap.ts', 'src/vanilla/utils/proxySet.ts'], | ||
rules: { | ||
'@typescript-eslint/no-unused-expressions': 'off', | ||
}, | ||
}, | ||
{ | ||
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.