mirror of
https://github.com/tauri-apps/tauri-docs.git
synced 2026-01-31 00:35:16 +01:00
30 lines
497 B
Plaintext
30 lines
497 B
Plaintext
{
|
|
"printWidth": 100,
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"tabWidth": 2,
|
|
"trailingComma": "es5",
|
|
"useTabs": false,
|
|
"plugins": ["prettier-plugin-astro"],
|
|
"overrides": [
|
|
{
|
|
"files": "*.astro",
|
|
"options": {
|
|
"parser": "astro"
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.json", "*.md", "*.toml", "*.yml"],
|
|
"options": {
|
|
"useTabs": false
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.md", "*.mdx"],
|
|
"options": {
|
|
"printWidth": 80
|
|
}
|
|
}
|
|
]
|
|
}
|