forked from sveltejs/kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.prettierrc
40 lines (40 loc) · 801 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
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": ["prettier-plugin-svelte"],
"overrides": [
{
"files": ["*.svelte"],
"options": {
"bracketSameLine": false
}
},
{
"files": ["packages/*/README.md"],
"options": {
"useTabs": false,
"tabWidth": 2
}
},
{
"files": [
"**/CHANGELOG.md",
"**/vite.config.js.timestamp-*",
"**/.svelte-kit/**",
"**/.custom-out-dir/**",
"**/build/**",
"**/test-results/**",
"documentation/**/*.md",
"packages/package/test/fixtures/**/expected/**/*",
"packages/package/test/watch/expected/**/*",
"packages/package/test/watch/package/**/*",
"packages/kit/src/core/postbuild/fixtures/**/*"
],
"options": {
"rangeEnd": 0
}
}
]
}