discord-jellyfin-bot/.eslintrc.json

20 lines
424 B
JSON
Raw Normal View History

2020-09-21 04:45:15 +02:00
{
"env": {
"browser": true,
"commonjs": true,
"es2021": true
},
"extends": [
"standard"
],
"parserOptions": {
"ecmaVersion": 12
},
"rules": {
2020-09-21 05:30:39 +02:00
"semi": ["error", "always"],
"quotes": ["error", "double"],
"indent": ["error", "tab"],
"no-unused-vars": ["error"],
"no-tabs":["error",{"allowIndentationTabs":true}]
2020-09-21 04:45:15 +02:00
}
2020-09-21 05:30:39 +02:00
}