diff --git a/.eslintrc.json b/.eslintrc.json index c5f86720..ba25cca8 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -20,5 +20,9 @@ "@typescript-eslint/explicit-function-return-type": "off" } } - ] + ], + "rules": { + "no-useless-constructor": "off", + "new-cap": "off" + } } diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7a86823d..60c6798c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,4 +25,4 @@ jobs: - run: yarn install - run: yarn lint - run: yarn build - - run: yarn test --coverage + - run: yarn test --coverage --forceExit