22 lines
552 B
JavaScript
22 lines
552 B
JavaScript
|
module.exports = {
|
||
|
"root": true,
|
||
|
"extends": "standard",
|
||
|
"env": {
|
||
|
"node": true
|
||
|
},
|
||
|
"rules": {
|
||
|
// at some point all of these should return to their default "error" state
|
||
|
// but right now, this is not a good choice, because too many places are
|
||
|
// wrong.
|
||
|
"import/first": ["warn"],
|
||
|
"indent": ["warn"],
|
||
|
"no-multiple-empty-lines": ["warn"],
|
||
|
"no-multi-spaces": ["warn"],
|
||
|
"object-curly-spacing": ["warn"],
|
||
|
"one-var": ["warn"],
|
||
|
"quotes": ["warn"],
|
||
|
"semi": ["warn"],
|
||
|
"space-infix-ops": ["warn"]
|
||
|
}
|
||
|
};
|