]>
Commit | Line | Data |
---|---|---|
65fcc311 | 1 | { |
df98563e C |
2 | "extends": "tslint-config-standard", |
3 | "rules": { | |
d412e80e | 4 | "await-promise": [true, "Bluebird"], |
df98563e C |
5 | "no-inferrable-types": true, |
6 | "eofline": true, | |
dffd5d12 | 7 | "indent": [true, "spaces"], |
b0f9f39e | 8 | "ter-indent": [true, 2], |
df98563e | 9 | "max-line-length": [true, 140], |
dfecb900 | 10 | "no-unused-variable": false, // Memory issues |
df98563e C |
11 | "no-floating-promises": false |
12 | } | |
65fcc311 | 13 | } |