-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
executable file
·43 lines (43 loc) · 1.03 KB
/
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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-eslint-rules",
"tslint-react",
"tslint-config-prettier",
"tslint-config-airbnb"
],
"rules": {
"align": false,
"array-type": false,
"arrow-parens": [true, "ban-single-arg-parens"],
"import-name": false,
"interface-name": false,
"max-classes-per-file": false,
"max-line-length": [
true,
{
"limit": 120,
"ignorePattern": "^import "
}
],
"no-console": false,
"no-namespace": false,
"no-unused-variable": true,
"no-var-requires": false,
"object-shorthand-properties-first": false,
"semicolon": false,
"space-before-function-paren": false,
"strict-boolean-expressions": false,
"ter-arrow-parens": false,
"ter-indent": false,
"trailing-comma": [true, { "multiline": { "typeLiterals": "ignore" } }],
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
]
}
}