Skip to content

Commit

Permalink
rebase fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dimaMachina committed Dec 8, 2022
1 parent e10f96f commit 05658fe
Show file tree
Hide file tree
Showing 2 changed files with 209 additions and 2,686 deletions.
9 changes: 5 additions & 4 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ module.exports = {
'no-sequences': 1,
'no-throw-literal': 1,
'no-unmodified-loop-condition': 0,
'no-unused-expressions': 0,
'no-useless-call': 1,
'no-useless-concat': 1,
'no-useless-return': 0,
Expand Down Expand Up @@ -142,7 +141,6 @@ module.exports = {
'error',
{ argsIgnorePattern: '^_', ignoreRestSiblings: true },
],
'@typescript-eslint/no-unused-expressions': 'error',

'no-use-before-define': 0,

Expand Down Expand Up @@ -188,8 +186,6 @@ module.exports = {
'no-bitwise': 1,
'no-continue': 0,
'no-inline-comments': 0,
'no-lonely-if': 'error',
'unicorn/no-lonely-if': 'error',
'no-mixed-operators': 0,
'no-negated-condition': 'error',
'no-nested-ternary': 0,
Expand Down Expand Up @@ -268,6 +264,11 @@ module.exports = {
'sonarjs/no-redundant-jump': 'error',
'unicorn/prefer-logical-operator-over-ternary': 'error',
'unicorn/throw-new-error': 'error',
'unicorn/prefer-includes': 'error',
'no-lonely-if': 'error',
'unicorn/no-lonely-if': 'error',
'no-unused-expressions': 'off',
'@typescript-eslint/no-unused-expressions': 'error',
},

plugins: ['@typescript-eslint', 'promise', 'sonarjs', 'unicorn'],
Expand Down
Loading

0 comments on commit 05658fe

Please sign in to comment.