pixdisp/.eslintrc.json

30 lines
545 B
JSON
Raw Normal View History

2018-01-07 09:24:32 +01:00
{
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
"error",
"tab"
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-case-declarations": "off",
"no-console": "off"
}
}