enigma-bbs/.eslintrc.json

26 lines
556 B
JSON
Raw Normal View History

2016-03-19 21:07:47 -06:00
{
"env": {
"es6": true,
"node": true
},
2023-01-13 09:23:03 -06:00
"extends": ["eslint:recommended", "plugin:json/recommended"],
2016-03-19 21:07:47 -06:00
"rules": {
"indent": [
"error",
2018-06-21 22:58:56 -06:00
4,
2016-08-03 22:36:35 -06:00
{
"SwitchCase": 1
2016-08-03 22:36:35 -06:00
}
2016-03-19 21:07:47 -06:00
],
"linebreak-style": ["error", "unix"],
"quotes": ["error", "single"],
"semi": ["error", "always"],
2017-12-31 17:54:11 -07:00
"comma-dangle": 0,
"no-trailing-spaces": "error",
"no-control-regex": 0
2022-03-28 17:52:52 -05:00
},
"parserOptions": {
"ecmaVersion": 2020
2016-03-19 21:07:47 -06:00
}
}