Select Git revision
.eslintrc.json
-
Damien Armillon authoredDamien Armillon authored
.eslintrc.json 538 B
{
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"no-trailing-spaces":"error",
"no-console" : "off",
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
]
}
}