setup-project
Version:
Setup a JS project
26 lines (25 loc) • 517 B
JSON
{
"extends": "airbnb",
"env" : {
"node" : true
},
"ecmaFeatures": {
"modules" : false
},
"rules" : {
"no-multi-spaces" : 0,
"key-spacing" : [1,{
"beforeColon" : true,
"afterColon" : true,
"mode" : "minimum"
}],
"no-use-before-define" : 0,
"no-param-reassign" : 0,
"comma-dangle" : 0,
"new-cap" : 0,
"no-confusing-arrow" : 0,
"arrow-parens" : 0,
"no-console" : 0,
"no-underscore-dangle" : 0
}
}