forked from smart-on-fhir/client-js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tslint.json
37 lines (37 loc) · 1.13 KB
/
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
30
31
32
33
34
35
36
37
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {
"object-literal-sort-keys": false,
"trailing-comma": false,
"no-consecutive-blank-lines": false,
"max-line-length": false,
"no-empty": false
},
"rules": {
"import-spacing": false,
"ordered-imports": false,
"one-variable-per-declaration": false,
"object-literal-sort-keys": false,
"trailing-comma": false,
"arrow-parens": false,
"object-literal-key-quotes": false,
"one-line": false,
"triple-equals": false,
"no-console": false,
"max-line-length": [true, 200],
"typedef-whitespace": false,
"no-consecutive-blank-lines": false,
"member-ordering": false,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"],
"interface-name": false,
"no-bitwise": false,
"curly": false,
"no-var-requires": false,
"forin": false,
"member-access": [true, "no-public"]
},
"rulesDirectory": []
}