This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
tslint.json
59 lines (59 loc) · 1.88 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
50
51
52
53
54
55
56
57
58
59
{
"extends": ["tslint:latest", "tslint-react", "tslint-microsoft-contrib"],
"rules": {
"max-line-length": [true, 120],
"file-header": [
true,
"! Copyright \\(c\\) Microsoft Corporation. All rights reserved. Licensed under the MIT license. "
],
"import-name": false,
"variable-name": [true, "check-format", "allow-pascal-case", "allow-leading-underscore"],
"semicolon": [true, "always", "ignore-bound-class-methods"],
"align": false,
"completed-docs": false,
"export-name": false,
"insecure-random": false,
"interface-name": [true, "never-prefix"],
"linebreak-style": false,
"jsx-no-multiline-js": false,
"match-default-export-name": false,
"missing-jsdoc": false,
"newline-before-return": false,
"no-angle-bracket-type-assertion": true,
"no-any": false,
"no-backbone-get-set-outside-model": false,
"no-default-export": false,
"no-empty": false,
"no-http-string": false,
"no-implicit-dependencies": false,
"no-import-side-effect": false,
"no-relative-imports": false,
"no-reserved-keywords": false,
"no-single-line-block-comment": false,
"no-submodule-imports": false,
"no-unsafe-any": false,
"number-literal-format": false,
"ordered-imports": [false],
"prefer-type-cast": false,
"promise-function-async": false,
"quotemark": [true, "single", "jsx-double", "avoid-escape"],
"react-tsx-curly-spacing": false,
"strict-boolean-expressions": false,
"trailing-comma": [
true,
{
"multiline": {
"objects": "always",
"arrays": "always",
"functions": "always",
"typeLiterals": "ignore"
},
"esSpecCompliant": true
}
],
"typedef": false,
"no-unused-expression": [true, "allow-fast-null-checks"],
"no-redundant-jsdoc": false,
"react-a11y-event-has-role": [false]
}
}