Files
cloudron-box/.eslintrc.json
T

30 lines
497 B
JSON
Raw Normal View History

2018-09-25 18:31:15 -07:00
{
"env": {
2019-03-09 22:00:09 -08:00
"node": true,
"es6": true
2018-09-25 18:31:15 -07:00
},
"extends": "eslint:recommended",
"parserOptions": {
2019-03-09 22:00:09 -08:00
"ecmaVersion": 8
2018-09-25 18:31:15 -07:00
},
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
2018-11-16 17:51:32 +01:00
],
"no-console": "off"
2018-09-25 18:31:15 -07:00
}
2019-03-09 22:00:09 -08:00
}