-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
28 lines (28 loc) · 1015 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
{
"extends": [
"tslint:all"
],
"rules": {
"completed-docs": false,
"interface-name": [true, "never-prefix"],
"linebreak-style": false,
"max-line-length": [true, 300],
"newline-before-return": false,
"no-angle-bracket-type-assertion": false,
"no-inferrable-types": false,
"no-object-literal-type-assertion": false,
"no-parameter-properties": false,
"no-submodule-imports": [true, "rxjs", "@angular/platform-browser", "@angular/core/testing"],
"no-unsafe-any": false, // Triggers false alarms with Angular annotations.
"no-use-before-declare": false,
"no-void-expression": false,
"only-arrow-functions": false,
"prefer-template": [true, "allow-single-concat"],
"promise-function-async": false,
"quotemark": [true, "single"],
"restrict-plus-operands": false,
"strict-boolean-expressions": false,
"trailing-comma": false,
"variable-name": [true,"check-format", "allow-leading-underscore"]
}
}