Skip to content

Commit

Permalink
Merge pull request #4 from trilogy-group/fix/js-rule-to-ts-equivalent
Browse files Browse the repository at this point in the history
fix(rules): disables JS rule and enable TS equivalent
  • Loading branch information
michal-grochowski authored Mar 25, 2021
2 parents 219ea87 + 1f0b0e8 commit 0cc3bd3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ module.exports = {
'@typescript-eslint/explicit-module-boundary-types': 'error',
'@typescript-eslint/no-explicit-any': 'error',
'consistent-return': 'error',
'no-empty-function': 'error',
'no-empty-function': 'off',
'@typescript-eslint/no-empty-function': 'error',
'no-func-assign': 'error',
'no-shadow': 'error',
'no-shadow': 'off',
'@typescript-eslint/no-shadow': 'error',
'no-unused-labels': 'error'
}
}

0 comments on commit 0cc3bd3

Please sign in to comment.