forked from artsy/reaction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
39 lines (39 loc) · 1.02 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
{
"extends": [
"tslint:recommended",
"tslint-react",
"tslint-config-prettier",
"tslint-plugin-relay"
],
"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": false,
"no-import-un-mocked": true,
"no-namespace": [true, "allow-declarations"],
"no-query-renderer-import": true,
"no-switch-case-fall-through": true,
"no-unused-expression": false,
"no-var-requires": false,
"object-literal-sort-keys": false,
"ordered-imports": true,
"relay-operation-generics": [
true,
{
"artifactDirectory": "__generated__",
"makeRelative": false
}
],
"trailing-comma": false,
"variable-name": [true, "ban-keywords", "allow-leading-underscore"],
"jsdoc-format": false,
"radix": false
},
"rulesDirectory": ["./tslint"]
}