-
Notifications
You must be signed in to change notification settings - Fork 5
/
.prettierrc
42 lines (42 loc) · 827 Bytes
/
.prettierrc
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
{
"useTabs": false,
"singleQuote": false,
"trailingComma": "none",
"printWidth": 150,
"endOfLine": "lf",
"plugins": ["prettier-plugin-svelte"],
"pluginSearchDirs": false,
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte",
"svelteIndentScriptAndStyle": true,
"svelteStrictMode": false,
"svelteSortOrder": "scripts-markup-styles-options",
"svelteBracketNewLine": false
}
},
{
"files": "*.md",
"options": {
"tabWidth": 2,
"useTabs": false,
"printWidth": 79
}
},
{
"files": "*.html",
"options": {
"parser": "html"
}
},
{
"files": "*.ts",
"options": {
"parser": "typescript"
}
}
],
"bracketSameLine": true
}