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