Skip to content

Commit 4e4c10a

Browse files
Update linting
1 parent 5f73727 commit 4e4c10a

File tree

8 files changed

+8544
-7623
lines changed

8 files changed

+8544
-7623
lines changed

.eslintrc.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module.exports = {
2+
root: true,
3+
parser: '@typescript-eslint/parser',
4+
plugins: ['@typescript-eslint', 'prettier'],
5+
extends: ['plugin:@typescript-eslint/recommended'],
6+
rules: {
7+
'@typescript-eslint/explicit-module-boundary-types': 'off',
8+
},
9+
};

.github/workflows/main.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -39,24 +39,6 @@ jobs:
3939
- name: Typecheck
4040
run: npm run typecheck
4141

42-
test:
43-
name: Unit and Integration Tests
44-
runs-on: ubuntu-latest
45-
steps:
46-
- name: Checkout repo
47-
uses: actions/checkout@v2
48-
49-
- name: Use Node 14
50-
uses: actions/setup-node@v1
51-
with:
52-
node-version: 14
53-
54-
- name: Install dependencies
55-
uses: bahmutov/npm-install@v1
56-
57-
- name: Test
58-
run: npm run test -- --ci --coverage --maxWorkers=2
59-
6042
lint:
6143
name: Linter
6244
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)