aboutsummaryrefslogtreecommitdiff
path: root/tslint.json
blob: 46a2004c14711a3401791d11b147ffaa61b00181 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "defaultSeverity": "error",
  "extends": [
    "tslint:recommended"
    ],
    "jsRules": {},
    "rules": {
      "max-line-length": {
        "options": [120]
      },
      "space-before-function-paren": [true, {"named": "never", "anonymous": "always"}]
    },
    "rulesDirectory": []
}