aboutsummaryrefslogtreecommitdiffstats
path: root/tslint.json
blob: 975089ab035b45355d13f93827de424411e32991 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{
  "extends": ["tslint-config-airbnb"],
  "rules": {
    "import-name": false,
    "variable-name": false,
    "class-name": false,
    "prefer-array-literal": false,
    "semicolon": [true, "always"],
    "max-line-length": false,
    "ordered-imports": true
  }
}