-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
40 lines (40 loc) · 881 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
36
37
38
39
40
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-config-airbnb",
"tslint-config-prettier"
],
"jsRules": {},
"rules": {
"no-namespace": false,
"no-string-literal": false,
"no-empty-interface": false,
"no-shadowed-variable": false,
"no-angle-bracket-type-assertion": false,
"no-unused-expression": false,
"no-string-throw": false,
"import-name": false,
"variable-name": false,
"class-name": false,
"max-line-length": {
"options": {
"limit": 120
},
"severity": "warn"
},
"interface-name": [true, "never-prefix"],
"prettier": [
true,
{
"singleQuote": true,
"semi": false,
"trailingComma": "es5"
}
]
},
"rulesDirectory": ["tslint-plugin-prettier"],
"linterOptions": {
"exclude": ["node_modules"]
}
}