mirror of
https://github.com/LukeHagar/sveltesociety.dev.git
synced 2025-12-06 04:21:38 +00:00
17 lines
337 B
JavaScript
17 lines
337 B
JavaScript
// @ts-check
|
|
|
|
/** @type {import('prettier').Config} */
|
|
const config = {
|
|
useTabs: true,
|
|
singleQuote: true,
|
|
trailingComma: 'none',
|
|
printWidth: 100,
|
|
plugins: ['prettier-plugin-svelte'],
|
|
overrides: [
|
|
{ files: '*.svelte', options: { parser: 'svelte' } },
|
|
{ files: '*.svx', options: { parser: 'mdx' } }
|
|
]
|
|
};
|
|
|
|
export default config;
|