summaryrefslogtreecommitdiffstats
path: root/tslint.json
blob: 79ec24ce40ee607437d13408b2435110d73b36a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
    "defaultSeverity": "warning",
    "extends": [
        "tslint:recommended"
    ],
    "jsRules": {},
    "rules": {
        "curly": [true, "as-needed"],
        "indent": [true, "tabs"],
        "interface-name": false,
        "no-bitwise": false,
        "one-variable-per-declaration": false,
        "quotemark": [true, "single", "avoid-escape", "avoid-template"]
    },
    "rulesDirectory": []
}