astro/.prettierrc.json

18 lines
307 B
JSON
Raw Normal View History

{
2022-04-02 20:15:41 +00:00
"printWidth": 100,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
2021-12-22 21:11:05 +00:00
"trailingComma": "es5",
"useTabs": true,
"overrides": [
{
"files": [".*", "*.json", "*.md", "*.toml", "*.yml"],
"options": {
"useTabs": false
}
}
],
"pluginSearchDirs": ["./assets"]
}