Skip to content

Commit

Permalink
feat: tweak too strict existing rules (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsyirvo authored Apr 3, 2024
1 parent 1f22c8a commit 427eeba
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,10 @@ module.exports = {
],
'@typescript-eslint/no-non-null-asserted-nullish-coalescing': 'error',
'@typescript-eslint/no-non-null-assertion': 'error',
'@typescript-eslint/no-misused-promises': [
'warn',
{ checksVoidReturn: { attributes: false } },
],
'@typescript-eslint/no-unnecessary-boolean-literal-compare': [
'warn',
{
Expand Down Expand Up @@ -248,7 +252,7 @@ module.exports = {
},
],
'@typescript-eslint/no-redeclare': 'error',
'@typescript-eslint/no-use-before-define': 'error',
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/object-curly-spacing': ['error', 'always'],
'@typescript-eslint/padding-line-between-statements': [
'error',
Expand Down

0 comments on commit 427eeba

Please sign in to comment.