Skip to content

Commit 87cf2b1

Browse files
lukasviceCopilot
andauthored
eslint 9 (#12)
* update to eslint 9 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * fix build: add skipLibCheck to resolve @types/eslint-scope conflict with eslint 9 types Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * remove custom eslint rules * make eslint automatic fixes Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent ceff42c commit 87cf2b1

10 files changed

Lines changed: 19566 additions & 8400 deletions

File tree

.eslintignore

Lines changed: 0 additions & 8 deletions
This file was deleted.

.eslintrc.json

Lines changed: 0 additions & 36 deletions
This file was deleted.

eslint.config.mjs

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import jest from '@aboutbits/eslint-config/configs/jest'
2+
import ts from '@aboutbits/eslint-config/configs/ts'
3+
import { defineConfig } from 'eslint/config'
4+
5+
export default defineConfig([
6+
ts,
7+
jest,
8+
{
9+
ignores: [
10+
'node_modules',
11+
'it.js',
12+
'it.d.ts',
13+
'de.js',
14+
'de.d.ts',
15+
'en.js',
16+
'en.d.ts',
17+
'ru.js',
18+
'ru.d.ts',
19+
],
20+
},
21+
])

0 commit comments

Comments
 (0)