eslint-config-scratch/node.js

11 lines
228 B
JavaScript
Raw Normal View History

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