Skip to content

Commit 88bab9e

Browse files
committed
Try disabling new rules again for CI
Despite it working locally... 😭
1 parent 84c8aa7 commit 88bab9e

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

eslint.config.mjs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff 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/**'],

0 commit comments

Comments
 (0)