-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtslint.json
33 lines (32 loc) · 1003 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
30
31
32
33
{
"extends": "@salesforce/dev-config/tslint",
"rules": {
"comment-format": false,
"typedef-whitespace": [
true,
{
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
},
{
"call-signature": "nospace",
"index-signature": "onespace",
"parameter": "nospace",
"property-declaration": "space",
"variable-declaration": "nospace"
}
],
"import-spacing": false,
"no-consecutive-blank-lines": false,
"no-trailing-whitespace": [true, "ignore-blank-lines"],
"no-var-requires": false,
"object-literal-shorthand": [true, "never"],
"one-line": [true, "check-open-brace", "check-whitespace"],
"whitespace": [true, "check-branch", "check-separator"],
// Remove these rule overrides once we have time for a style/formatting pass
"quotemark": false
}
}