-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
32 lines (32 loc) · 1007 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
{
"defaultSeverity": "error",
"extends": ["tslint-react", "tslint-config-prettier"],
"jsRules": {},
"rules": {
"jsx-no-lambda": false,
"jsx-boolean-value": ["never"],
"no-any": false,
"no-magic-numbers": false,
"only-arrow-functions": [true],
"curly": true,
"no-var-keyword": true,
"triple-equals": true,
"indent": true,
"prefer-const": true,
"semicolon": [true, "always", "ignore-bound-class-methods"],
"eofline": true,
"trailing-comma": [true, {
"multiline": "always",
"singleline": "never"
}],
"arrow-return-shorthand": [true],
"class-name": true,
"interface-name": [true, "always-prefix"],
"quotemark": [true, "single", "jsx-double"],
"no-unused-variable": [true, {
"ignore-pattern": "^I"
}],
"no-unused-expression": [true, "allow-fast-null-checks"]
},
"rulesDirectory": []
}