diff --git a/.github/workflows/codechecks.js.yml b/.github/workflows/codechecks.js.yml index 733e8b55..6ad2f42e 100644 --- a/.github/workflows/codechecks.js.yml +++ b/.github/workflows/codechecks.js.yml @@ -45,5 +45,3 @@ jobs: run: yarn run lint-ci - name: Typescript run: yarn run tsc - - name: Typescript lint - run: yarn run lint-ts diff --git a/.ts-eslintrc.js b/.ts-eslintrc.js index 43392aef..1974e07b 100644 --- a/.ts-eslintrc.js +++ b/.ts-eslintrc.js @@ -5,8 +5,8 @@ module.exports = { "es6": true }, extends: [ - "plugin:@typescript-eslint/recommended", - "plugin:@typescript-eslint/recommended-requiring-type-checking", + // "plugin:@typescript-eslint/recommended", + // "plugin:@typescript-eslint/recommended-requiring-type-checking", ], parser: '@typescript-eslint/parser', parserOptions: { @@ -17,5 +17,8 @@ module.exports = { plugins: [ '@typescript-eslint', ], - rules: {} + rules: { + "@typescript-eslint/no-floating-promises": 2, + "@typescript-eslint/no-misused-promises": 2 + } };