forked from bpmn-io/vs-code-bpmn-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
29 lines (29 loc) · 802 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-eslint-rules"
],
"rules": {
"no-string-throw": true,
"no-unused-expression": true,
"no-duplicate-variable": true,
"curly": true,
"class-name": true,
"semicolon": [ true, "always" ],
"triple-equals": true,
"no-unused-expression-chai": true,
"indent": [ true, "spaces", 2 ],
"no-bitwise": true,
"no-console": true,
"no-multi-spaces": true,
"no-unused-vars": [ true, { "ignore-pattern": "^_" } ],
"no-trailing-whitespace": true,
"object-curly-spacing": [ true, "always" ],
"space-in-parens": [ true, "never" ],
"comment-format": [ true, "always" ],
"quotemark": [true, "single", "avoid-escape"]
},
"defaultSeverity": "warning",
"rulesDirectory": [
"tslint-no-unused-expression-chai"
]
}