mirror of
https://github.com/Alee14/OhGodMusicBot.git
synced 2025-01-22 09:22:06 -05:00
32 lines
567 B
JSON
32 lines
567 B
JSON
{
|
|
"env": {
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"parserOptions": {
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"no-console": "off",
|
|
"indent": [
|
|
"error",
|
|
"tab",
|
|
{
|
|
"SwitchCase": 1
|
|
}
|
|
],
|
|
"linebreak-style": [
|
|
"error",
|
|
"windows"
|
|
],
|
|
"quotes": [
|
|
"warn",
|
|
"single"
|
|
],
|
|
"semi": [
|
|
"warn",
|
|
"always"
|
|
]
|
|
}
|
|
}
|