aboutsummaryrefslogtreecommitdiffhomepage
path: root/tslint.json
blob: cfe2ac712941313f421b0c2b874377c471ff4da1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "extends": "tslint-config-standard",
  "rules": {
    "await-promise": [true, "Bluebird"],
    "no-inferrable-types": true,
    "eofline": true,
    "indent": [true, "spaces"],
    "ter-indent": [
      true,
      2,
      {
        "SwitchCase": 1
      }
    ],
    "max-line-length": [true, 140],
    "no-unused-variable": false, // Memory issues
    "no-floating-promises": false
  }
}