forked from help-me-mom/ng-mocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
39 lines (39 loc) · 1.27 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
35
36
37
38
39
{
"extends": ["tslint:all", "tslint-jasmine-rules"],
"rules": {
"align": false,
"arrow-parens": false,
"comment-format": false,
"completed-docs": false,
"cyclomatic-complexity": false,
"deprecation": false,
"file-name-casing": false,
"max-classes-per-file": false,
"member-access": false,
"newline-before-return": false,
"newline-per-chained-call": false,
"no-any": false,
"no-disabled-tests": true,
"no-empty": false,
"no-floating-promises": false,
"no-focused-tests": true,
"no-implicit-dependencies": [true, "dev", ["ng-mocks"]],
"no-inferred-empty-object-type": false,
"no-magic-numbers": false,
"no-null-keyword": false,
"no-require-imports": false,
"no-submodule-imports": false,
"no-unbound-method": false,
"no-unsafe-any": false,
"no-use-before-declare": false,
"only-arrow-functions": false,
"quotemark": [true, "single"],
"semicolon": [true, "always", "strict-bound-class-methods"],
"strict-boolean-expressions": false,
"strict-comparisons": [true, { "allow-object-equal-comparison": true }],
"trailing-comma": [true, { "esSpecCompliant": true }],
"typedef": false,
"unified-signatures": false,
"variable-name": [true, "allow-leading-underscore"]
}
}