discord-bot/.eslintrc.json

12 lines
259 B
JSON
Raw Permalink Normal View History

2017-09-29 19:38:00 -04:00
{
2021-10-28 15:32:32 -06:00
"extends": ["eslint:recommended", "standard",
2022-12-31 02:05:32 -07:00
"plugin:@typescript-eslint/recommended"
],
2021-10-28 15:32:32 -06:00
"plugins": ["@typescript-eslint"],
2017-09-29 19:38:00 -04:00
"rules": {
"semi": [2, "always"]
2021-10-28 15:32:32 -06:00
},
"parserOptions": {
"project": ["tsconfig.json"]
2017-09-29 19:38:00 -04:00
}
}