mirror of
https://github.com/pheralb/svgl.git
synced 2024-11-14 17:21:55 +08:00
13 lines
333 B
JavaScript
13 lines
333 B
JavaScript
/** @type {import("prettier").Config} */
|
|
const config = {
|
|
useTabs: false,
|
|
singleQuote: true,
|
|
trailingComma: 'none',
|
|
printWidth: 100,
|
|
plugins: ['prettier-plugin-svelte', 'prettier-plugin-tailwindcss'],
|
|
pluginSearchDirs: ['.'],
|
|
overrides: [{ files: '*.svelte', options: { parser: 'svelte' } }]
|
|
};
|
|
|
|
export default config;
|