forked from danvk/typings-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
31 lines (30 loc) · 884 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
{
"extends": [
"tslint:recommended"
],
"rules": {
// Rules where we disagree with tslint:recommended
"curly": false,
"quotemark": [true, "single", "jsx-single", "avoid-escape" ],
"indent": [true, "spaces"],
"triple-equals": true,
"max-line-length": [true, 100],
"interface-name": false,
"object-literal-sort-keys": false,
// no parens required around one param lambdas.
"arrow-parens": [true, "ban-single-arg-parens"],
"only-arrow-functions": [
true,
"allow-named-functions"
],
"no-console": false,
"switch-default": false,
// New rules that we add beyond tslint:recommended
"no-angle-bracket-type-assertion": true,
"interface-over-type-literal": true,
"space-before-function-paren": [true, "never"],
"import-spacing": true,
"no-string-throw": true,
"prefer-const": true
}
}