-
-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy path.prettierrc
More file actions
28 lines (28 loc) · 555 Bytes
/
.prettierrc
File metadata and controls
28 lines (28 loc) · 555 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
{
"semi": true,
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"plugins": ["prettier-plugin-svelte"],
"svelteSortOrder": "options-styles-scripts-markup",
"svelteStrictMode": true,
"svelteAllowShorthand": true,
"bracketSameLine": false,
"svelteIndentScriptAndStyle": true,
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
},
{
"files": "*.md",
"options": {
"printWidth": 80,
"proseWrap": "always"
}
}
]
}