-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
35 lines (34 loc) · 1022 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
32
33
34
35
{
"defaultSeverity": "warning",
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"],
"jsRules": {},
"rules": {
"jsx-no-lambda": false,
"quotemark": { "options": ["jsx-double", "single"] },
"import-name": false,
"variable-name": { "options": ["check-format"], "severity": "none" },
"ordered-imports": false,
"member-ordering": false,
"object-literal-sort-keys": false,
"trailing-comma": {
"options": [
{
"multiline": "always",
"esSpecCompliant": true,
"singleline": {
"arrays": "always",
"objects": "ignore",
"functions": "ignore",
"imports": "never",
"typeLiterals": "never",
"exports": "never"
}
}
]
}
},
"linterOptions": {
"exclude": ["config/**/*.js", "node_modules/**/*.ts", "coverage/lcov-report/*.js"]
},
"rulesDirectory": []
}