forked from CreativeIT/material-angular-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
45 lines (45 loc) · 847 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
43
44
45
{
"rulesDirectory": [
"node_modules/codelyzer"
],
"extends": [
"tslint:recommended",
"tslint-config-airbnb",
"tslint-angular"
],
"rules": {
"max-line-length": [
true,
{
"ignore-pattern": "(\"|'|`).*?\\1"
}
],
"function-name": [
true,
{
"function-regex": "^[A-Z]?[a-z][\\w\\d]+$"
}
],
"ter-computed-property-spacing": false,
"quotemark": [
true,
"single",
"avoid-escape"
],
"object-literal-sort-keys": false,
"arrow-parens": false,
"ter-arrow-parens": [
true,
"as-needed",
{
"requireForBlockBody": true
}
],
"no-conditional-assignment": false,
"object-literal-key-quotes": [
true,
"consistent-as-needed"
],
"no-parameter-reassignment": false
}
}