enigma-bbs/.eslintrc.json

30 lines
543 B
JSON
Raw Normal View History

2016-03-20 03:07:47 +00:00
{
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
2016-08-04 04:36:35 +00:00
"tab",
{
"SwitchCase" : 1
}
2016-03-20 03:07:47 +00:00
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
2018-01-01 00:54:11 +00:00
"comma-dangle": 0,
"no-trailing-spaces" :"warn"
2016-03-20 03:07:47 +00:00
}
}