Skip to content

Commit

Permalink
Make linting stricter
Browse files Browse the repository at this point in the history
  • Loading branch information
ferferga committed Feb 12, 2021
1 parent 437a95e commit f08f13a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,13 @@ module.exports = {
'@typescript-eslint/explicit-function-return-type': 'error',
'@typescript-eslint/no-explicit-any': 'warn',
'import/newline-after-import': 'error',
'import/order': 'error'
'import/order': 'error',
'promise/no-nesting': 'error',
'promise/no-new-statics': 'error',
'promise/no-return-in-finally': 'error',
'promise/prefer-await-to-callbacks': 'error',
'promise/prefer-await-to-then': 'error',
'prefer-arrow-callback': 'error'
},
overrides: [
{
Expand Down

0 comments on commit f08f13a

Please sign in to comment.