forked from microsoft/reactxp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
124 lines (123 loc) · 4.01 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"rulesDirectory": [
"./node_modules/tslint-microsoft-contrib"
],
"rules": {
// Rules from tslint-microsoft-contrib
"function-name": [true, {
"method-regex": "^[a-z]\\w+$",
"private-method-regex": "^_[a-z]\\w+$",
"protected-method-regex": "^[a-z_]\\w+$",
"static-method-regex": "^[a-z]\\w+$",
"function-regex": "^\\w+$"
}],
"no-delete-expression": true,
"no-document-domain": true,
"no-disable-auto-sanitization": true,
"no-exec-script": true,
"no-function-constructor-with-string-args": true,
"no-string-based-set-immediate": true,
"no-string-based-set-interval": true,
"no-string-based-set-timeout": true,
"react-no-dangerous-html": true,
"react-this-binding-issue": [true, { "allow-anonymous-listeners": true }],
"no-inner-html": true,
"no-document-write": true,
// Rules that are built in to tslint
"align": [true, "statements"],
"class-name": true,
"curly": true,
"eofline": true,
"forin": true,
"indent": [true, "spaces"],
"interface-name": [true, "never-prefix"],
"label-position": true,
"max-line-length": [true, 140],
"member-access": [true, "no-public"],
"new-parens": true,
"no-arg": true,
"no-bitwise": false,
"no-console": [true,
"debug",
"info",
"time",
"timeEnd",
"trace"
],
"no-consecutive-blank-lines": true,
"no-conditional-assignment": true,
"no-construct": true,
"no-debugger": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-duplicate-super": true,
"no-duplicate-switch-case": true,
"no-eval": true,
"no-inferrable-types": true,
"no-invalid-this": true,
"no-string-throw": true,
"no-switch-case-fall-through": true,
"no-trailing-whitespace": true,
"no-unused-expression": true,
"no-var-keyword": true,
"prefer-const": true,
"no-string-literal": true,
"no-sparse-arrays": true,
"ban-comma-operator": true,
"use-isnan": true,
"linebreak-style": true,
"comment-format": true,
"no-boolean-literal-compare": true,
"no-unnecessary-initializer": true,
"space-before-function-paren": [true, "never"],
"trailing-comma": [
true,
{
"multiline": "never",
"singleline": "never",
"esSpecCompliant": true
}
],
"arrow-parens": [true, "ban-single-arg-parens"],
"one-line": [true,
"check-open-brace",
"check-catch",
"check-finally",
"check-else",
"check-whitespace"
],
"quotemark": [true, "single", "jsx-single"],
"radix": true,
"semicolon": true,
"triple-equals": true,
"whitespace": [true,
"check-branch",
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-type",
"check-rest-spread",
"check-type-operator",
"check-preblock"
],
"arrow-return-shorthand": true,
"no-angle-bracket-type-assertion": true,
"one-variable-per-declaration": true,
"no-object-literal-type-assertion": true,
"no-unnecessary-type-assertion": true,
"no-duplicate-imports": true,
"import-spacing": true,
"type-literal-delimiter": true,
"no-floating-promises": [true],
"file-header": [true],
"ordered-imports": [true,
{
"import-sources-order": "case-insensitive",
"module-source-path": "basename",
"named-imports-order": "case-insensitive",
"grouped-imports": true
}
]
}
}