mirror of
https://github.com/zhigang1992/now-deployment.git
synced 2026-04-28 20:15:31 +08:00
13 lines
266 B
JavaScript
13 lines
266 B
JavaScript
module.exports = {
|
|
'env': {
|
|
'node': true
|
|
},
|
|
'extends': 'eslint:recommended',
|
|
'rules': {
|
|
'strict': [2, "global"],
|
|
'no-mixed-spaces-and-tabs': "off",
|
|
'no-console':'off',
|
|
'no-unexpected-multiline':'off'
|
|
}
|
|
}
|