-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc
25 lines (25 loc) · 986 Bytes
/
.eslintrc
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
{
"extends": "airlight-node",
"parserOptions": {
"project": "./tsconfig.json",
"extraFileExtensions": [".cjs"]
},
"rules": {
"@typescript-eslint/indent": "off",
"indent": "off",
"@typescript-eslint/no-redeclare": "off", // TODO: Do it later
"@typescript-eslint/naming-convention": "off", // TODO: Do it later
"@typescript-eslint/restrict-plus-operands": "off", // TODO: Do it later
"no-param-reassign": "off", // TODO: Do it later
"complexity": "off", // TODO: Do it later
"max-lines-per-function": "off", // TODO: Do it later
"max-lines": "off", // TODO: Do it later
"max-depth": "off", // TODO: Do it later
"no-continue": "off", // TODO: Do it later
"guard-for-in": "off", // TODO: Do it later
"no-restricted-syntax": "off", // TODO: Do it later
"filename-rules/match": "off", // TODO: Do it later
"max-nested-callbacks": "off", // TODO: Do it later
"consistent-return": "off" // TODO: Do it later
}
}