-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtslint.json
More file actions
32 lines (31 loc) · 978 Bytes
/
Copy pathtslint.json
File metadata and controls
32 lines (31 loc) · 978 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
27
28
29
30
31
32
{
"extends": [
"tslint-config-airbnb",
"tslint-config-prettier"
],
"rulesDirectory": ["tslint-plugin-prettier"],
"rules": {
"linebreak-style": [true, "LF"],
"max-line-length": [true, 120],
"indent": [true, "spaces", 4],
"semicolon": [true, "never"],
"trailing-comma": [true, {"multiline": "always", "singleline": "never"}],
"quotemark": [true, "double"],
"eofline": true,
"no-trailing-whitespace": [true, "ignore-blank-lines", "ignore-comments", "ignore-jsdoc"],
"no-consecutive-blank-lines": [true, 3],
"import-name": false,
"curly": [true, "as-needed"],
"prettier": [
{
"endOfLine": "lf",
"printWidth": 120,
"useTabs": false,
"tabWidth": 4,
"semi": false,
"trailingComma": "all"
},
false
]
}
}