UNPKG

925 BJSONView Raw
1{
2 "extends": "tslint:recommended",
3 "rules": {
4 "quotemark": [true, "single"],
5 "semicolon": [true, "ignore-interfaces"],
6 "one-line": [true],
7 "no-shadowed-variable": true,
8 "whitespace": [
9 true,
10 "check-branch",
11 "check-decl",
12 "check-operator",
13 "check-module",
14 "check-separator",
15 "check-type"
16 ],
17 "max-line-length": [true, 200],
18 "interface-name": [true, "never-prefix"],
19 "class-name": false,
20 "ban-types": [false],
21 "no-angle-bracket-type-assertion": false,
22 "prefer-const": false,
23 "object-literal-sort-keys": false,
24 "trailing-comma": [false],
25 "no-console": [false],
26 "ordered-imports": [false],
27 "eofline": false,
28 "curly": false,
29 "no-string-literal": false,
30 "comment-format": [false],
31 "no-unused-expression": false,
32 "no-empty": false,
33 "arrow-parens": false
34 }
35}