-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
49 lines (49 loc) · 1.45 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
45
46
47
48
49
{
"extends": [ "tslint:latest", "tslint-eslint-rules", "tslint-immutable" ],
"rules": {
"array-bracket-spacing": false,
"arrow-body-style": false,
"arrow-parens": false,
"block-spacing": false,
"camelcase": false,
"whitespace": [true, "check-module"],
"comma-dangle": false,
"func-names": false,
"function-paren-newline": false,
"import/newline-after-import": false,
"indent": false,
"interface-name": false,
"member-access": false,
"max-line-length": [true, 200],
"only-arrow-functions": false,
"no-class": false,
"no-console": false,
"no-delete": true,
"no-empty": false,
"no-expression-statement": false,
"no-if-statement": false,
"no-implicit-dependencies": [ true, "dev" ],
"no-let": true,
"no-method-signature": true,
"no-mixed-interface": false,
"no-namespace": false,
"no-parameter-reassignment": true,
"no-submodule-imports": false,
"no-this": false,
"no-trailing-spaces": false,
"no-var-keyword": true,
"object-curly-spacing": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"padded-blocks": false,
"prefer-arrow-callback": false,
"quotemark": [ true, "single", "backtick", "jsx-double" ],
"quotes": false,
"semi": false,
"semicolon": false,
"space-before-function-paren": false,
"spaced-comment": false,
"trailing-comma": false,
"typedef": [ true, "call-signature" ]
}
}