-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
35 lines (35 loc) · 1.14 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
{
"extends": ["tslint:latest", "tslint-react", "tslint-config-airbnb"],
"rules": {
"array-type": [true, "array"],
"arrow-parens": true,
"curly": [true, "ignore-same-line"],
"import-name": false,
"interface-name": [true, "never-prefix"],
"jsx-no-multiline-js": false,
"member-ordering": [true, {
"order": [
"public-static-field",
"protected-static-field",
"private-static-field",
"static-method",
"instance-field",
"constructor",
"public-instance-method",
"protected-instance-method",
"private-instance-method"
],
"alphabetize": true
}],
"no-use-before-declare": true,
"no-implicit-dependencies": [true, "dev"],
"no-submodule-imports": false,
"object-shorthand-properties-first": false,
"ordered-imports": true,
"quotemark": [true, "single", "jsx-double"],
"strict-boolean-expressions": false,
"ter-arrow-parens": true,
"trailing-comma": [true, {"multiline": "always", "singleline": "never"}],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"]
}
}