eslint-config-scratch/node.js
Paul Kaplan ed99a27b45 feat(all): Move all warnings to errors
Make all previous warning rules into errors except the todo rule

BREAKING CHANGE: eslint4.0 and other dep updates, and all rule changes. Fixes .
2017-08-15 10:02:52 -04:00

13 lines
265 B
JavaScript

module.exports = {
rules: {
// Node/CommonJS
'global-require': [2],
'handle-callback-err': [2],
'no-mixed-requires': [2],
'no-new-require': [2],
'no-path-concat': [2]
},
env: {
node: true
}
};