mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-22 03:47:27 +01:00
24 lines
382 B
Plaintext
24 lines
382 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"],
|
|
"options": {
|
|
"useTabs": false,
|
|
"tabWidth": 2
|
|
}
|
|
}
|
|
],
|
|
"pluginSearchDirs": ["."]
|
|
}
|