-
Notifications
You must be signed in to change notification settings - Fork 7
/
tslint.json
44 lines (44 loc) · 1.52 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
42
43
44
{
"extends": ["tslint:latest", "tslint-react"],
"rules": {
"indent": [true, "tabs", 2],
"align": false,
"array-type": [true, "array"],
"arrow-parens": false,
"interface-name": [true, "always-prefix"],
"interface-over-type-literal": false,
"jsx-curly-spacing": false,
"jsx-no-bind": true,
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"jsx-boolean-value": ["always", { "never": ["personal"] }],
"no-consecutive-blank-lines": [false],
"no-empty": false,
"no-empty-interface": false,
"no-implicit-dependencies": false,
"no-switch-case-fall-through": true,
"no-object-literal-type-assertion": false,
"no-submodule-imports": [true, "rxjs", "firebase", "@grammarly/focal"],
"no-var-requires": false,
"no-unnecessary-initializer": false,
"max-classes-per-file": [false],
"member-access": false,
"member-ordering": false,
"no-trailing-whitespace": [true, "ignore-template-strings"],
"object-literal-key-quotes": false,
"object-literal-shorthand": false,
"object-literal-sort-keys": false,
"one-line": false,
"no-namespace": false,
"one-variable-per-declaration": false,
"prefer-conditional-expression": false,
"only-arrow-functions": [true, "allow-named-functions"],
"ordered-imports": false,
"quotemark": [true, "single", "jsx-double", "avoid-escape"],
"semicolon": false,
"switch-default": true,
"trailing-comma": false,
"variable-name": [true, "ban-keywords"],
"no-misused-new": false
}
}