• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "defaultSeverity": "error",
3  "extends": "tslint:recommended",
4  "jsRules": {},
5  "rules": {
6    "curly": [true, "ignore-same-line"],
7    "quotemark": [false, "double", "avoid-escape", "avoid-template"],
8    "only-arrow-functions": [false],
9    "no-var-keyword": true,
10    "prefer-const": [true],
11    "max-line-length": [false, {
12      "limit": 80
13    }],
14    "ordered-imports": false,
15    "array-type": [true, "generic"],
16    "semicolon": true,
17    "member-access": false,
18    "object-literal-shorthand": false,
19    "object-literal-key-quotes": [true, "as-needed"],
20    "object-literal-sort-keys": false,
21    "space-before-function-paren": [true, {
22      "anonymous": "always"
23    }],
24    "triple-equals": false,
25    "no-string-throw": false,
26    "no-empty": [true, "allow-empty-catch", "allow-empty-functions"],
27    "trailing-comma": false,
28    "member-ordering": false,
29    "no-string-literal": false,
30    "arrow-parens": [true, "ban-single-arg-parens"],
31    "no-console": false,
32    "interface-name": false,
33    "no-bitwise": false,
34    "no-shadowed-variable": false,
35    "prefer-for-of": true,
36    "align": true,
37    "arrow-return-shorthand": true,
38    "max-classes-per-file": false,
39    "variable-name": true,
40    "forin": false,
41    "one-variable-per-declaration": true,
42    "no-consecutive-blank-lines": true
43  },
44  "rulesDirectory": []
45}
46