-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
31 lines (31 loc) · 1.11 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
{
"extends" : "./.tsconfig/tslint-base.json",
"rules": {
"align": [true, "elements", "members", "parameters", "statements"],
"arrow-return-shorthand": false,
"comment-format": false,
"completed-docs": [true, "functions", "methods", "class"],
"file-header": [ false ], "no-default-export": false,
"no-inferrable-types": [true, "ignore-params"],
"no-reference": false,
"no-require-imports": false,
"no-trailing-whitespace": [true, "ignore-comments"],
"no-unused-variable": false,
"object-literal-key-quotes": [true, "consistent-as-needed"],
"object-literal-sort-keys": false,
"prefer-function-over-method": false,
"space-before-function-paren": false,
"strict-type-predicates": false,
"typedef": [
true,
"call-signature",
"arrow-call-signature",
"parameter",
"arrow-parameter",
"property-declaration",
"member-variable-declaration",
"object-destructuring",
"array-destructuring"
]
}
}