-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
29 lines (29 loc) · 880 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
25
26
27
28
29
{
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier", "tslint-config-airbnb"],
"rules": {
"import-name": [true, { "lodash": "_" }],
"interface-name": [false],
"member-access": [true, "no-public"],
"max-classes-per-file": false,
"max-line-length": [true, 110],
"object-literal-sort-keys": false,
"ordered-imports": [false],
"no-var-requires": [false],
"variable-name": [true, "ban-keywords"],
"jsx-no-lambda": false,
"quotemark": [true, "double", "jsx-double"],
"no-boolean-literal-compare": false,
"trailing-comma": [false],
"ter-arrow-parens": [true]
},
"linterOptions": {
"exclude": [
"node_modules/**",
"tmp/**",
"src/server/graphwalker/**",
"src/client/graphwalker/models/Graphwalker.ts"
],
"include": ["*.ts", "src/**"],
"format": "verbose"
}
}