Skip to content

Commit e5dadd5

Browse files
committed
Update dependencies, bump version number
1 parent ee7690e commit e5dadd5

12 files changed

+4212
-2113
lines changed

.eslintrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{ "extends": "./eslint.config.js" }

eslint.config.js

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
module.exports = {
2+
root: true,
3+
parser: '@typescript-eslint/parser',
4+
parserOptions: {
5+
tsconfigRootDir: '.',
6+
project: ['./tsconfig.json']
7+
},
8+
plugins: ['@typescript-eslint'],
9+
extends: [
10+
'eslint:recommended',
11+
'plugin:@typescript-eslint/recommended',
12+
'plugin:@typescript-eslint/recommended-requiring-type-checking',
13+
],
14+
rules: {
15+
'@typescript-eslint/ban-types': 'off',
16+
'@typescript-eslint/explicit-module-boundary-types': 'off',
17+
'@typescript-eslint/no-explicit-any': 'off',
18+
'@typescript-eslint/no-non-null-assertion': 'off',
19+
'@typescript-eslint/no-unsafe-assignment': 'off',
20+
'@typescript-eslint/no-unsafe-call': 'off',
21+
'@typescript-eslint/no-unsafe-member-access': 'off',
22+
'@typescript-eslint/no-unsafe-return': 'off',
23+
'@typescript-eslint/no-unused-vars': [
24+
'warn',
25+
{ argsIgnorePattern: '^_' }
26+
],
27+
'prefer-rest-params': 'off',
28+
},
29+
};

0 commit comments

Comments
 (0)