-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbiome.jsonc
More file actions
44 lines (43 loc) · 939 Bytes
/
Copy pathbiome.jsonc
File metadata and controls
44 lines (43 loc) · 939 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
33
34
35
36
37
38
39
40
41
42
43
44
/*
HTMLium formatter/linter config
do NOT modify this file or else ur pull request will be denied, if you want to please first contact me on my discord
_ __ _ _ _
___/ |/ /_ __| (_) |__
/ __| | '_ \/ _` | | '_ \
\__ \ | (_) | (_| | | | |
|___/_|\___/\__,_|_|_| |_|
*/
{
"formatter": {
"enabled": true,
"lineWidth": 80,
"indentStyle": "tab",
"indentWidth": 2
},
"javascript": {
"formatter": {
"quoteStyle": "double",
"quoteProperties": "asNeeded",
"trailingCommas": "all",
"semicolons": "always",
"arrowParentheses": "always",
"bracketSpacing": true,
"attributePosition": "auto",
"bracketSameLine": false
},
"parser": {
"unsafeParameterDecoratorsEnabled": true
}
},
"json": {
"formatter": {
"trailingCommas": "none"
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
}
}