forked from trojanowski/react-apollo-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
45 lines (45 loc) · 1.07 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
{
"defaultSeverity": "error",
"extends": ["tslint:latest", "tslint-react", "tslint-config-prettier"],
"jsRules": {},
"rules": {
"interface-name": false,
"interface-over-type-literal": false,
"jsx-boolean-value": [true, "never"],
"jsx-no-lambda": false,
"max-classes-per-file": false,
"member-access": false,
"no-implicit-dependencies": [
true,
[
"jest-dom",
"jest-react-profiler",
"graphql-tag",
"apollo-link",
"apollo-cache",
"apollo-link-mock",
"apollo-cache-inmemory",
"react-dom",
"react-testing-library"
]
],
"no-submodule-imports": false,
"no-this-assignment": [
true,
{
"allow-destructuring": true
}
],
"no-unused-expression": [true, "allow-fast-null-checks"],
"only-arrow-functions": false,
"ordered-imports": [
true,
{
"import-sources-order": "lowercase-last",
"named-imports-order": "lowercase-last"
}
],
"prefer-template": true
},
"rulesDirectory": []
}