File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,20 @@ export default tseslint.config([
55 {
66 files : [ '**/*.ts' ] ,
77 extends : [ solanaConfig ] ,
8+ rules : {
9+ '@typescript-eslint/no-base-to-string' : 'off' ,
10+ '@typescript-eslint/no-unsafe-argument' : 'off' ,
11+ '@typescript-eslint/no-unsafe-assignment' : 'off' ,
12+ '@typescript-eslint/no-unsafe-call' : 'off' ,
13+ '@typescript-eslint/no-unsafe-enum-comparison' : 'off' ,
14+ '@typescript-eslint/no-unsafe-member-access' : 'off' ,
15+ '@typescript-eslint/no-unsafe-return' : 'off' ,
16+ '@typescript-eslint/only-throw-error' : 'off' ,
17+ '@typescript-eslint/prefer-promise-reject-errors' : 'off' ,
18+ '@typescript-eslint/restrict-plus-operands' : 'off' ,
19+ '@typescript-eslint/restrict-template-expressions' : 'off' ,
20+ '@typescript-eslint/unbound-method' : 'off' ,
21+ } ,
822 } ,
923 {
1024 files : [ 'packages/nodes/**' , 'packages/node-types/**' ] ,
You can’t perform that action at this time.
0 commit comments