Skip to content

Commit

Permalink
chore: bump eslint 8.57.0 =>9.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ert78gb committed Feb 10, 2025
1 parent 9a1e996 commit 4a04e52
Show file tree
Hide file tree
Showing 13 changed files with 416 additions and 284 deletions.
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

0 comments on commit 4a04e52

Please sign in to comment.