mirror of
https://github.com/LukeHagar/sveltesociety.dev.git
synced 2025-12-06 12:47:44 +00:00
* More tailwind classes * Add prettier-plugin-tailwindcss * More class replacement * Update Card.svelte * Remove tags from card * Update header link * Run format
17 lines
368 B
JavaScript
17 lines
368 B
JavaScript
// @ts-check
|
|
|
|
/** @type {import('prettier').Config} */
|
|
const config = {
|
|
useTabs: true,
|
|
singleQuote: true,
|
|
trailingComma: 'none',
|
|
printWidth: 100,
|
|
plugins: ['prettier-plugin-svelte', 'prettier-plugin-tailwindcss'],
|
|
overrides: [
|
|
{ files: '*.svelte', options: { parser: 'svelte' } },
|
|
{ files: '*.svx', options: { parser: 'mdx' } }
|
|
]
|
|
};
|
|
|
|
export default config;
|