2016-10-23 18:08:20 -04:00
|
|
|
module.exports = {
|
|
|
|
rules: {
|
|
|
|
// Node/CommonJS
|
|
|
|
'global-require': [2],
|
|
|
|
'handle-callback-err': [1],
|
|
|
|
'no-mixed-requires': [2],
|
|
|
|
'no-new-require': [2],
|
|
|
|
'no-path-concat': [2]
|
2016-10-24 10:36:10 -04:00
|
|
|
},
|
|
|
|
env: {
|
|
|
|
node: true
|
2016-10-23 18:08:20 -04:00
|
|
|
}
|
|
|
|
};
|