-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
26 lines (26 loc) · 800 Bytes
/
tslint.json
File metadata and controls
26 lines (26 loc) · 800 Bytes
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
{
"extends": ["tslint-config-airbnb", "tslint-react"],
"rules": {
"import-name": false,
"align": false,
"variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case"],
"ordered-imports": [true, {
"grouped-imports": true,
"import-sources-order": "lowercase-last",
"named-imports-order": "lowercase-first",
"module-source-path": "full"
}],
"eofline": true,
"interface-over-type-literal": true,
"max-line-length": {
"options": [120]
},
"arrow-return-shorthand": [true, "multiline"],
"member-ordering": [true, {"order": "fields-first"}],
"jsx-ban-props": [true,
["style", "Use Styled Components to change component's appearance."]
],
"function-name": false,
"ter-arrow-parens": false
}
}