forked from mtripg6666tdr/Discord-SimpleMusicBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
29 lines (29 loc) · 823 Bytes
/
.eslintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"root": true,
"extends": [
"@mtripg6666tdr/eslint-config/nodejs-typescript"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": [
"license-header"
],
"rules": {
"license-header/header": ["warn", "./util/license.js"],
"no-process-exit": "off",
"@typescript-eslint/consistent-type-imports": "off",
"keyword-spacing": "off",
"@typescript-eslint/keyword-spacing": ["warn", { "before": true, "after": true }],
"space-before-blocks": "off",
"@typescript-eslint/space-before-blocks": ["warn", { "functions": "always", "keywords": "always", "classes": "always" }]
},
"overrides": [
{
"files": ["./util/exampleDbServer/node/src/**/*.ts"],
"parserOptions": {
"project": "./util/exampleDbServer/node/tsconfig.json"
}
}
]
}