forked from suprmat95/recipe-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
24 lines (24 loc) · 694 Bytes
/
tslint.json
File metadata and controls
24 lines (24 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"extends": "tslint:recommended",
"rules": {
"arrow-parens": false,
"ban": [true, ["describe", "only"], ["it", "only"]],
"interface-name": [false],
"max-classes-per-file": [false],
"max-line-length": [false],
"member-access": [false],
"member-ordering": [false],
"no-console": [true, "log", "error"],
"no-empty": false,
"no-trailing-whitespace": false,
"no-unused-expression": false,
"no-var-requires": false,
"only-arrow-functions": [false],
"quotemark": [true, "single"],
"trailing-comma": [false],
"variable-name": [false],
"radix": false,
"object-literal-sort-keys": [false],
"ordered-imports": [false]
}
}