UNPKG

635 BJSONView Raw
1{
2 "defaultSeverity": "error",
3 "extends": ["tslint:recommended"],
4 "rules": {
5 "jsdoc-format": false,
6 "forin": false,
7 "no-console": false,
8 "no-any": false,
9 "indent": [true, "spaces", 2],
10 "ordered-imports": false,
11 "object-literal-sort-keys": false,
12 "no-unused-expression": false,
13 "arrow-parens": [true, "ban-single-arg-parens"],
14 "max-line-length": [true, {"limit": 120, "ignore-pattern": "(\\* @)|//"}],
15 "trailing-comma": [
16 true,
17 {
18 "multiline": {
19 "objects": "always",
20 "arrays": "always",
21 "functions": "always",
22 "typeLiterals": "ignore"
23 },
24 "esSpecCompliant": true
25 }
26 ]
27 }
28}
\No newline at end of file