summaryrefslogtreecommitdiffhomepage
path: root/gui/tslint.json
blob: a7f1b4f9595d2af771e1f84987f53e57390baf8b (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
{
  "defaultSeverity": "error",
  "extends": [
    "tslint:latest",
    "tslint-react",
    "tslint-config-prettier"
  ],
  "rules": {
    "max-classes-per-file": false,
    "no-implicit-dependencies": [
      true,
      "optional",
      [
        "electron",
        "electron-devtools-installer"
      ]
    ],
    "no-submodule-imports": [
      true,
      "validated",
      "stream-json"
    ],
    "object-literal-sort-keys": false,
    "variable-name": [
      true,
      "ban-keywords",
      "check-format",
      "allow-pascal-case",
      "allow-leading-underscore"
    ]
  }
}