ramirez/.eslintrc

26 lines
371 B
Plaintext
Raw Normal View History

2016-12-05 17:25:20 -05:00
{
"root": true,
"parserOptions": {
2019-08-13 12:58:14 -04:00
"ecmaVersion": 10,
"sourceType": "module"
2016-12-05 17:25:20 -05:00
},
"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
}
2020-08-12 17:04:48 -04:00
}],
"quotes": ["error", "double"]
2016-12-05 17:25:20 -05:00
}
}