-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
32 lines (32 loc) · 741 Bytes
/
tslint.json
File metadata and controls
32 lines (32 loc) · 741 Bytes
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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {
"quotemark": false,
"object-literal-sort-keys": false
},
"rules": {
"object-literal-sort-keys": false,
"ordered-imports": false,
"no-console": false,
"radix": false,
"align": false,
"quotemark": false,
"file-name-casing": [true, "camel-case"],
"indent": [true, "spaces", 2],
"member-access": false,
"interface-name": false,
"trailing-comma": false,
"arrow-parens": false,
"semicolon": [true, "always", "ignore-bound-class-methods"]
},
"linterOptions": {
"exclude": [
"main/**/*.ts",
"renderer/pages/_app.tsx",
"renderer/pages/_document.tsx"
]
}
}