forked from artsy/fresnel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
31 lines (31 loc) · 997 Bytes
/
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
{
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"],
"rules": {
"curly": false,
"interface-name": [true, "never-prefix"],
"jsx-boolean-value": [true, "never"],
"jsx-no-lambda": false,
"jsx-no-bind": false,
"max-classes-per-file": false,
"member-access": [false],
"member-ordering": false,
"no-console": [true, "log", "error"],
"no-unused-expression": false,
"no-var-requires": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"no-namespace": [true, "allow-declarations"],
"trailing-comma": false,
"variable-name": [true, "ban-keywords", "allow-leading-underscore"],
"completed-docs": [
true,
{
"functions": { "visibilities": ["exported"] },
"classes": { "visibilities": ["exported"] },
"types": { "visibilities": ["exported"] },
"variables": { "visibilities": ["exported"] }
}
],
"no-unnecessary-initializer": false
}
}