-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
31 lines (31 loc) · 966 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
{
"enabled": true,
"run": "onType",
"defaultSeverity": "error",
"jsRules": {},
"rules": {
"interface-name": false,
"variable-name": [true, "ban-keywords", "allow-leading-underscore"],
"object-literal-sort-keys": false,
"ordered-imports": [
true,
{
"import-sources-order": "lowercase-last",
"grouped-imports": "true",
"named-imports-order": "lowercase-first",
"module-source-path": "full"
}
],
"jsx-alignment": true,
"jsx-ban-elements": true,
"jsx-ban-props": true,
"jsx-boolean-value": false,
"jsx-curly-spacing": true,
"jsx-no-lambda": true,
"jsx-no-multiline-js": false,
"jsx-self-close": true,
"jsx-wrap-multiline": true
},
"rulesDirectory": [],
"extends": ["tslint:latest", "tslint-react", "tslint-config-prettier"]
}