ramirez/.eslintrc

28 lines
407 B
Plaintext

{
"root": true,
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module",
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"env": {
"node": true
},
"rules": {
"space-infix-ops": "error",
"space-unary-ops": ["error", {
"words": true,
"nonwords": false,
"overrides": {
"!": true,
"!!": true
}
}]
}
}