Skip to content

Commit c6ec239

Browse files
committed
upgrade deprecated packages for test and eslint
1 parent ef3c234 commit c6ec239

File tree

12 files changed

+4610
-8715
lines changed

12 files changed

+4610
-8715
lines changed

.eslintrc.js

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

babel.config.js

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

eslint.config.mjs

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import eslint from '@eslint/js';
2+
import tseslint from 'typescript-eslint';
3+
import stylistic from '@stylistic/eslint-plugin';
4+
5+
export default tseslint.config(
6+
eslint.configs.recommended,
7+
...tseslint.configs.recommendedTypeChecked,
8+
{
9+
languageOptions: {
10+
parserOptions: {
11+
projectService: true,
12+
project: './tsconfig.json',
13+
},
14+
},
15+
plugins: {
16+
'@stylistic': stylistic,
17+
},
18+
rules: {
19+
'@typescript-eslint/no-non-null-assertion': 'off',
20+
},
21+
},
22+
);

jest.config.mjs

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

0 commit comments

Comments
 (0)