aboutsummaryrefslogtreecommitdiff
path: root/tslint.json
blob: 35769adb482d0e3bfd629f62e2ddffe38775ee6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
    "defaultSeverity": "error",
    "extends": [
        "tslint-config-airbnb",
        "tslint-consistent-codestyle",
        "tslint-eslint-rules",
        "tslint-microsoft-contrib/latest",
        "tslint:all"
    ],
    "jsRules": {
        "max-line-length": {
            "options": [
                120
            ]
        }
    },
    "rules": {
        "max-line-length": {
            "options": [
                120
            ]
        },
        "mocha-avoid-only": false,
        "mocha-no-side-effect-code": false,
        "mocha-unneeded-done": false,
        "newline-per-chained-call": false,
        "no-constant-condition": true,
        "no-relative-imports": false
    },
    "rulesDirectory": [
        "node_modules/tslint-eslint-rules/dist/rules"
    ]
}