-
Notifications
You must be signed in to change notification settings - Fork 76
/
tslint.json
41 lines (41 loc) · 1.12 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
38
39
40
41
{
"extends": "@salesforce/dev-config/tslint",
"rules": {
"member-access": false,
"ordered-imports": false,
"trailing-comma": false,
"quotemark": false,
"member-ordering": false,
"no-any": false,
"comment-format": false,
"no-consecutive-blank-lines": false,
"prefer-const": false,
"one-line": false,
"no-trailing-whitespace": false,
"no-var-keyword": false,
"triple-equals": false,
"curly": false,
"no-angle-bracket-type-assertion": false,
"whitespace": false,
"prefer-for-of": false,
"no-shadowed-variable": false,
"only-arrow-functions": false,
"space-before-function-paren": false,
"semicolon": false,
"radix": false,
"array-type": false,
"ban-types": false,
"jsdoc-format": false,
"align": false,
"arrow-parens": false,
"object-literal-shorthand": false,
"no-eval": false,
"no-function-constructor-with-string-args": false,
"no-var-requires": false,
"one-variable-per-declaration": false,
"typedef-whitespace":false,
"eofline": false,
"variable-name": false,
"object-literal-key-quotes": false
}
}