mirror of
https://github.com/hyprwm/hyprland-website.git
synced 2024-11-17 02:45:59 +01:00
10 lines
279 B
JavaScript
10 lines
279 B
JavaScript
module.exports = {
|
|
useTabs: true,
|
|
singleQuote: true,
|
|
semi: false,
|
|
trailingComma: 'none',
|
|
printWidth: 100,
|
|
plugins: ['prettier-plugin-svelte', 'prettier-plugin-tailwindcss'],
|
|
tailwindFunctions: ['clsx'],
|
|
overrides: [{ files: '*.svelte', options: { parser: 'svelte' } }]
|
|
}
|