UNPKG

265 BJavaScriptView Raw
1module.exports = {
2 rules: {
3 // Node/CommonJS
4 'global-require': [2],
5 'handle-callback-err': [2],
6 'no-mixed-requires': [2],
7 'no-new-require': [2],
8 'no-path-concat': [2]
9 },
10 env: {
11 node: true
12 }
13};