eslint-config-client-shiwaforce
Version:
Shareable client side config for eslint by ShiwaForce
13 lines (12 loc) • 432 B
JavaScript
/**
* easier is better
* @author sarkiroka on 2017.02.21.
*/
module.exports = {
'complexity': [2],
'max-len': [2, {code: 160, ignoreTrailingComments: true, ignoreUrls: true}],
'max-lines': [2, {max: 300, skipComments: true, skipBlankLines: true}],
'max-nested-callbacks': [2, {max: 3}],
'no-empty': [2],
'no-eval': [2]
};