forked from DefinitelyTyped/dt-mergebot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
34 lines (32 loc) · 1.09 KB
/
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
30
31
32
33
34
{
"extends": "tslint:all",
"rules": {
// TODO
"no-magic-numbers": false,
"no-unsafe-any": false,
"deprecation": false,
"arrow-parens": [true, "ban-single-arg-parens"],
"comment-format": [true, "check-space"],
"curly": false,
"interface-name": [true, "never-prefix"],
"linebreak-style": false,
"max-classes-per-file": false,
"member-access": [true, "no-public"],
"member-ordering": false,
"no-console": false,
"no-this-assignment": [true, { "allow-destructuring": true }],
"object-literal-sort-keys": false,
"only-arrow-functions": [true, "allow-declarations"],
"typedef": [true, "call-signature"],
"completed-docs": false,
"newline-before-return": false,
"no-non-null-assertion": false,
"no-require-imports": false,
"no-unused-variable": false,
"no-use-before-declare": false,
"promise-function-async": false,
"quotemark": false,
"switch-default": false,
"type-literal-delimiter": false
}
}