Skip to content

Commit fd27950

Browse files
committed
feat: add sdk class
1 parent f022780 commit fd27950

23 files changed

+271
-115
lines changed

.eslintrc.cjs

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@ module.exports = {
2222
'no-bitwise': 'off',
2323
'no-console': 'warn',
2424
'eslint-comments/require-description': 'off',
25-
'@typescript-eslint/no-unsafe-member-access': 'warn',
26-
'@typescript-eslint/no-unsafe-call': 'warn',
27-
'@typescript-eslint/no-unsafe-return': 'warn',
28-
'@typescript-eslint/no-unsafe-argument': 'warn',
29-
'@typescript-eslint/no-unsafe-assignment': 'warn',
30-
'@typescript-eslint/explicit-function-return-type': 'warn',
25+
'import/no-extraneous-dependencies': 'off',
26+
'@typescript-eslint/no-unsafe-member-access': 'off',
27+
'@typescript-eslint/no-unsafe-call': 'off',
28+
'@typescript-eslint/no-unsafe-return': 'off',
29+
'@typescript-eslint/no-unsafe-argument': 'off',
30+
'@typescript-eslint/no-unsafe-assignment': 'off',
31+
'@typescript-eslint/explicit-function-return-type': 'off',
3132
},
3233
ignorePatterns: [
3334
'test',
@@ -38,5 +39,7 @@ module.exports = {
3839
'coverage',
3940
'generated',
4041
'trade-interfaces',
42+
'codegen',
43+
'docs',
4144
],
4245
};

.github/workflows/build-and-test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ jobs:
2828
with:
2929
version: latest
3030

31-
- name: Install packages, build, and test
31+
- name: Install packages, build, lint, and test
3232
run: |
3333
pnpm i
3434
pnpm build
35+
pnpm lint
3536
pnpm test

0 commit comments

Comments
 (0)