compiler-discord/.eslintrc.json

14 lines
258 B
JSON
Raw Normal View History

2019-03-12 10:09:46 +01:00
{
"extends": "eslint:recommended",
"parserOptions": {
2020-06-17 10:37:06 +02:00
"ecmaVersion": 2019
2019-03-12 10:09:46 +01:00
},
"env": {
"es6": true,
"node": true
},
"rules": {
"semi": "error",
2020-06-17 10:37:06 +02:00
"indent": ["error", 4, { "SwitchCase": 1 }]
2019-03-12 10:09:46 +01:00
}
}