-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
27 lines (27 loc) · 901 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
{
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"],
"linterOptions": {
"exclude": [
"node_modules/**/*"
]
},
"rules": {
"object-literal-sort-keys": false,
"ordered-imports": false,
"no-console": false,
"only-arrow-functions": true,
"strict-type-predicates": true,
"triple-equals": true,
"no-void-expression": true,
"curly": false,
"no-var-requires": false,
"member-access": [true, "no-public"],
"no-empty": [true, "allow-empty-catch", "allow-empty-functions"],
"semicolon": [true, "always"],
"member-ordering": false,
"no-eval": false,
"match-default-export-name": true,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"],
"max-classes-per-file": false
}
}