forked from discordjs/discord.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
29 lines (28 loc) · 877 Bytes
/
tslint.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
{
"extends": ["dtslint/dtslint.json"],
"rules": {
"prefer-readonly": false,
"await-promise": false,
"no-for-in-array": false,
"no-null-undefined-union": false,
"no-promise-as-boolean": false,
"no-void-expression": false,
"strict-string-expressions": false,
"strict-comparisons": false,
"use-default-type-parameter": false,
"no-boolean-literal-compare": false,
"no-unnecessary-qualifier": false,
"no-unnecessary-type-assertion": false,
"expect": false,
"no-import-default-of-export-equals": false,
"no-relative-import-in-test": false,
"no-unnecessary-generics": false,
"strict-export-declare-modifiers": false,
"no-single-declare-module": false,
"member-access": true,
"no-unnecessary-class": false,
"array-type": [true, "array"],
"no-any-union": false,
"void-return": false
}
}