Skip to content

Commit

Permalink
no-array-method-this-argument: Ignore lodash.findLast and `lodash…
Browse files Browse the repository at this point in the history
….findLastIndex` (#1927)
  • Loading branch information
andersk committed Oct 7, 2022
1 parent 055a2a9 commit 86e8add
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions rules/no-array-method-this-argument.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,21 @@ const ignored = [
'underscore.find',
'R.find',

'lodash.findLast',
'_.findLast',
'underscore.findLast',
'R.findLast',

'lodash.findIndex',
'_.findIndex',
'underscore.findIndex',
'R.findIndex',

'lodash.findLastIndex',
'_.findLastIndex',
'underscore.findLastIndex',
'R.findLastIndex',

'lodash.flatMap',
'_.flatMap',

Expand Down

0 comments on commit 86e8add

Please sign in to comment.