mirror of
https://github.com/pheralb/svgl.git
synced 2024-11-15 01:31:57 +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;
|