Skip to content

Commit

Permalink
fix(eslint-config): fix no-empty-function rule
Browse files Browse the repository at this point in the history
  • Loading branch information
andrepolischuk committed Mar 13, 2024
1 parent 782db86 commit c34c83b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/eslint-config/ts.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ module.exports = {
'error',
{argsIgnorePattern: '^_', varsIgnorePattern: '^_'}
],
'no-empty-function': 'off',
'@typescript-eslint/no-empty-function': [
'error',
{allow: ['arrowFunctions']}
],
'no-magic-numbers': 'off',
'@typescript-eslint/no-magic-numbers': [
'error',
Expand Down

0 comments on commit c34c83b

Please sign in to comment.