aboutsummaryrefslogtreecommitdiff
path: root/tslint.json
blob: aa4dee4e5439685a4fb4623e84ca40f7aded18bf (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
    "rules": {
        // "no-non-null-assertion": true,
        "no-return-await": true,
        "no-string-literal": true,
        // "no-var-keyword": true,
        // "no-var-requires": true,
        "prefer-object-spread": true,
        "prefer-for-of": true,
        "no-unnecessary-type-assertion": true,
        // "no-void-expression": [
        //     true,
        //     "ignore-arrow-function-shorthand"
        // ],
        "triple-equals": true,
        // "prefer-const": true,
        "no-unnecessary-callback-wrapper": true,
        // "align": [
        //     true,
        //     "parameters",
        //     "arguments",
        //     "statements",
        //     "members",
        //     "elements"
        // ],
        "class-name": true,
        "arrow-return-shorthand": true,
        // "object-literal-shorthand": true,
        // "object-literal-sort-keys": true,
        "semicolon": [
            true,
            "always"
        ],
        "curly": [
            true,
            "ignore-same-line"
        ],
        // "quotemark": [
        //     true,
        //     "double",
        //     "jsx-double",
        //     "avoid-template",
        //     "avoid-escape"
        // ],
        "no-tautology-expression": true,
        "unnecessary-constructor": true
        // "trailing-comma": [
        //     true,
        //     {
        //         "multiline": "always",
        //         "singleline": "never"
        //     }
        // ],
        // "ordered-imports": true
    }
}