aboutsummaryrefslogtreecommitdiff
path: root/node_modules/awesome-typescript-loader/tslint.json
blob: ba011524847584922bb9b874f74f13ad2491b623 (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
{
  "rules": {
    "class-name": true,
    "comment-format": [
        true,
        "check-space"
    ],
    "curly": true,
    "eofline": true,
    "indent": [true],
    "jsdoc-format": true,
    "member-ordering": [
      true,
      "public-before-private",
      "static-before-instance",
      "variables-before-functions"
    ],
    "no-arg": true,
    "no-consecutive-blank-lines": [true],
    "no-debugger": true,
    "no-duplicate-variable": true,
    "no-trailing-whitespace": true,
    "no-var-keyword": true,
    "quotemark": [true],
    "typedef-whitespace": [true],
    "semicolon": [true]
  }
}