forked from Azure/openapi-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
27 lines (27 loc) · 823 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
{
"defaultSeverity": "error",
"extends": ["tslint:recommended","tslint-config-prettier"],
"jsRules": {},
"rules": {
"object-literal-sort-keys": false,
"interface-name": false,
"jsdoc-format": false,
"forin": false,
"member-ordering": false,
"no-unsafe-any": false,
"no-null-keyword": false,
"prettier": true,
"no-console":false,
"no-conditional-assignment":false,
"prefer-conditional-expression":false,
"only-arrow-functions":false,
"triple-equals":false,
"no-var-requires":false,
"no-unused-expression":false,
"variable-name":false,
"no-shadowed-variable":false,
"interface-over-type-literal":false,
"newline-per-chained-call":false
},
"rulesDirectory": ["tslint-plugin-prettier"]
}