Skip to content

Commit b61f976

Browse files
Disable array-func/prefer-array-from
1 parent ff3e37d commit b61f976

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,14 @@ The following rules are disabled due to them being considered unduely restrictiv
126126
- jest/no-disabled-tests
127127
- react-redux/prefer-separate-component-file
128128
- redux-saga/no-unhandled-errors
129+
- lodash/prefer over native rules
130+
- lodash-fp/use-fp
131+
132+
The following rules are disabled due to clashing with other plugins
133+
134+
- array-func/prefer-array-from
135+
- import/order
136+
- sort-imports
129137

130138
## License
131139

rules/array-func.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ module.exports = {
22
plugins: ['array-func'],
33
extends: ['plugin:array-func/recommended'],
44
rules: {
5+
// Rule disabled due to clash with Unicorn
6+
'array-func/prefer-array-from': 'off',
7+
58
// Rules not in recommended config
69
'array-func/prefer-flat': 0,
710
'array-func/prefer-flat-map': 0,

0 commit comments

Comments
 (0)