aboutsummaryrefslogtreecommitdiff
path: root/tslint.json
blob: 83255a798eec578714dca0b1ba0679a5653f061c (plain)
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
{
    "linterOptions": {
        "exclude": [
            "./src/client/northstar/**",
            "**/*.js"
        ]
    },
    "rules": {
        "no-return-await": true,
        "no-string-literal": true,
        "prefer-object-spread": true,
        "prefer-for-of": true,
        "no-unnecessary-type-assertion": true,
        "triple-equals": true,
        "prefer-const": true,
        "no-unnecessary-callback-wrapper": true,
        "class-name": true,
        "arrow-return-shorthand": true,
        "semicolon": [
            true,
            "always"
        ],
        "curly": [
            true,
            "ignore-same-line"
        ],
        "no-tautology-expression": true,
        "unnecessary-constructor": true
    },
    "defaultSeverity": "warning",
    "jsRules": {}
}