Skip to content

Commit

Permalink
fix: allowing lodash.debounce and lodash.throttle
Browse files Browse the repository at this point in the history
  • Loading branch information
erunion committed Sep 16, 2021
1 parent 08bd9f4 commit 94d6c34
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,9 @@ module.exports = {
'unicorn/prefer-number-properties': 'off',
'unicorn/prefer-type-error': 'error',
'unicorn/throw-new-error': 'error',

// We're comfortable using throttle and debounce out of Lodash instead of polyfilling them with something else.
'you-dont-need-lodash-underscore/debounce': 'off',
'you-dont-need-lodash-underscore/throttle': 'off',
},
};

0 comments on commit 94d6c34

Please sign in to comment.