forked from goldcaddy77/warthog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
24 lines (24 loc) · 951 Bytes
/
tslint.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"extends": ["typestrict", "tslint:latest", "tslint-config-prettier"],
"//": "See https://github.com/palantir/tslint/issues/512 for interface-name",
"///": "Note: no-var-keyword is currently broken, we should re-add when it's fixed",
"////": "class-name currently broken, but would like to turn it back on",
"/////": "max-classes-per-file currently broken, but would like to turn it back on",
"//////": "no-string-throw same ^^^",
"rules": {
"no-string-throw": false,
"class-name": false,
"interface-over-type-literal": false,
"interface-name": [false],
"max-classes-per-file": false,
"member-access": [false],
"no-submodule-imports": false,
"no-unused-variable": false,
"no-implicit-dependencies": [true, "dev"],
"no-var-keyword": false,
"no-floating-promises": true
},
"linterOptions": {
"exclude": ["node_modules/**/*", "*/**/*.js", "*/**/generated/*.ts", "src/migration/*"]
}
}