mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-06 21:07:44 +00:00
16 lines
357 B
JavaScript
16 lines
357 B
JavaScript
/** @type {import("prettier").Config} */
|
|
export default {
|
|
useTabs: false,
|
|
tabWidth: 4,
|
|
singleQuote: true,
|
|
trailingComma: 'none',
|
|
printWidth: 100,
|
|
plugins: ['prettier-plugin-svelte', 'prettier-plugin-tailwindcss'],
|
|
overrides: [
|
|
{
|
|
files: '*.svelte',
|
|
options: { parser: 'svelte' }
|
|
}
|
|
]
|
|
};
|