Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump eslint 8.57.0 =>9.20.0 #2527

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 0 additions & 68 deletions .eslintrc.json

This file was deleted.

73 changes: 73 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
import globals from 'globals';
import eslint from '@eslint/js';
import tsEslint from 'typescript-eslint';

const globalIgnores = [
'.idea',
'**/dist',
'**/node_modules',
'node_modules',
];

export default [
{ ignores: globalIgnores },
{
...eslint.configs.recommended,
files: ['*.js', '*.cjs'],
languageOptions: {
ecmaVersion: 2022,
globals: globals.node,
sourceType: 'commonjs',
},
},
{
...eslint.configs.recommended,
files: ['*.mjs'],
languageOptions: {
ecmaVersion: 2022,
globals: globals.node,
sourceType: 'module',
},
},
...tsEslint.config(
{ ignores: ['**/*.js', '**/*.mjs'] },
eslint.configs.recommended,
// typescript-eslint shared configs
tsEslint.configs.recommended,
tsEslint.configs.recommendedTypeChecked,
{
languageOptions: {
parserOptions: {
projectService: true,
tsconfigRootDir: import.meta.dirname,
},
},
rules: {
'no-async-promise-executor': 'off',
'no-case-declarations': 'off',
'prefer-const': 'off',
'@typescript-eslint/no-base-to-string': 'off',
'@typescript-eslint/no-empty-object-type': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-misused-promises': 'off',
'@typescript-eslint/no-namespace': 'off',
'@typescript-eslint/no-redundant-type-constituents': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-enum-comparison': 'off',
'@typescript-eslint/no-floating-promises': 'off',
'@typescript-eslint/no-unsafe-function-type': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-wrapper-object-types': 'off',
'@typescript-eslint/only-throw-error': 'off',
'@typescript-eslint/require-await': 'off',
'@typescript-eslint/prefer-promise-reject-errors': 'off',
'@typescript-eslint/restrict-template-expressions': 'off',
'@typescript-eslint/unbound-method': 'off',
}
},
),
]
Loading
Loading