ramirez/.eslintrc

25 lines
335 B
Plaintext
Raw Normal View History

2016-12-05 17:25:20 -05:00
{
"root": true,
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
2017-02-09 21:56:36 -05:00
"space-infix-ops": "error",
"space-unary-ops": ["error", {
"words": true,
"nonwords": false,
"overrides": {
"!": true,
"!!": true
}
}]
2016-12-05 17:25:20 -05:00
}
}