forked from LFSCamargo/Chatify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
45 lines (45 loc) · 1.22 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": "warning",
"extends": [
"tslint:recommended",
"tslint-react",
"tslint-config-airbnb",
"tslint-config-prettier",
"tslint-plugin-graphql"
],
"jsRules": {},
"rules": {
"no-bitwise": false,
"graphql": [
true,
{
"env": "apollo",
"schemaJsonFilepath": "./packages/app/data/schema.json"
}
],
"no-unused-variable": true,
"quotemark": [true, "single"],
"prefer-for-of": false,
"no-increment-decrement": false,
"ordered-imports": false,
"jsx-no-lambda": false,
"curly": false,
"function-name": false,
"import-name": false,
"interface-name": false,
"jsx-boolean-value": false,
"jsx-no-multiline-js": false,
"member-access": false,
"no-console": [false, "debug", "dir", "log", "trace", "warn"],
"no-empty-interface": false,
"object-literal-sort-keys": false,
"object-shorthand-properties-first": false,
"semicolon": false,
"strict-boolean-expressions": false,
"ter-arrow-parens": false,
"ter-indent": false,
"no-else-after-return": false,
"variable-name": [true, "allow-leading-underscore", "allow-pascal-case", "ban-keywords", "check-format"]
},
"rulesDirectory": []
}