-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtslint.json
42 lines (42 loc) · 813 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
41
42
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-microsoft-contrib"
],
"jsRules": {},
"rules": {
"align": [true, "statements", "members", "elements"],
"export-name": [
true,
{
"ignore-case": true
}
],
"max-line-length": [true, 80],
"no-any": false,
"no-submodule-imports": false,
"no-implicit-dependencies": [
true,
"dev",
[
"@",
"@public",
"@main",
"@models",
"@renderer",
"@utils"
]
],
"no-import-side-effect": [
true,
{
"ignore-module": "(\\.css)$|reflect-metadata",
}
],
"no-increment-decrement": ["allow-for-loops"],
"rulesDirectory": [
"node_modules/tslint-microsoft-contrib"
]
}
}