Skip to content

Commit

Permalink
fix: disable no-callback-literal because of too many false positives
Browse files Browse the repository at this point in the history
  • Loading branch information
dackmin committed May 14, 2020
1 parent 43fbad8 commit bf339ea
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion common.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ module.exports = {
'new-cap': OFF,
'max-len': WARNING,
'object-curly-newline': OFF,
'object-property-newline': OFF
'object-property-newline': OFF,

// Standard
'standard/no-callback-literal': OFF,
},
};

0 comments on commit bf339ea

Please sign in to comment.