Files
component-party/.prettierrc
P. Christopher Bowers f2362f7444 build: 🚨 Updated Prettierrrc to Manually Include Svelte Plugin
Prettier does not automatically add plugins when installed with pnpm. This adds the plugin manually to the config file.
2022-05-11 10:05:47 -04:00

18 lines
312 B
Plaintext

{
"printWidth": 180,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": true,
"plugins": ["prettier-plugin-svelte"],
"overrides": [
{
"files": [".*", "*.json", "*.md", "*.toml", "*.yml"],
"options": {
"useTabs": false
}
}
]
}