mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-22 03:47:27 +01:00
fe8a9ce31d
Co-authored-by: Rich Harris <rich.harris@vercel.com> Co-authored-by: Simon Holthausen <simon.holthausen@vercel.com> Co-authored-by: Dominic Gannaway <dg@domgan.com>
23 lines
373 B
Plaintext
23 lines
373 B
Plaintext
{
|
|
"useTabs": true,
|
|
"singleQuote": true,
|
|
"trailingComma": "none",
|
|
"printWidth": 100,
|
|
"plugins": ["prettier-plugin-svelte"],
|
|
"overrides": [
|
|
{
|
|
"files": ["*.svelte"],
|
|
"options": {
|
|
"bracketSameLine": false
|
|
}
|
|
},
|
|
{
|
|
"files": ["README.md", "packages/*/README.md", "**/package.json"],
|
|
"options": {
|
|
"useTabs": false,
|
|
"tabWidth": 2
|
|
}
|
|
}
|
|
]
|
|
}
|