File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -126,6 +126,14 @@ The following rules are disabled due to them being considered unduely restrictiv
126
126
- jest/no-disabled-tests
127
127
- react-redux/prefer-separate-component-file
128
128
- 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
129
137
130
138
## License
131
139
Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ module.exports = {
2
2
plugins : [ 'array-func' ] ,
3
3
extends : [ 'plugin:array-func/recommended' ] ,
4
4
rules : {
5
+ // Rule disabled due to clash with Unicorn
6
+ 'array-func/prefer-array-from' : 'off' ,
7
+
5
8
// Rules not in recommended config
6
9
'array-func/prefer-flat' : 0 ,
7
10
'array-func/prefer-flat-map' : 0 ,
You can’t perform that action at this time.
0 commit comments