forked from twilio/twilio-video-processors.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
29 lines (29 loc) · 794 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
{
"defaultSeverity": "error",
"extends": ["tslint:recommended"],
"rules": {
"arrow-parens": false,
"ban-types": false,
"interface-name": false,
"max-line-length": [true, 200],
"member-access": [true, "no-public"],
"member-ordering": [true, {
"order": "statics-first",
"alphabetize": true
}],
"no-empty": {
"severity": "warning"
},
"no-bitwise": false,
"no-console": false,
"no-namespace": false,
"no-string-literal": false,
"no-unused-variable": true,
"no-var-requires": false,
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
"semicolon": true,
"variable-name": [true, "allow-leading-underscore", "allow-pascal-case"],
"unified-signatures": false
},
"rulesDirectory": []
}