Working example

This commit is contained in:
Håkon Størdal 2025-09-02 22:51:17 +02:00
parent 5c04a0f1ee
commit b4444e7bd2
14 changed files with 935 additions and 22 deletions

20
prettier.config.ts Normal file
View file

@ -0,0 +1,20 @@
import type { Config } from 'prettier';
const config: Config = {
useTabs: true,
singleQuote: true,
trailingComma: 'none',
printWidth: 100,
plugins: ['prettier-plugin-svelte', 'prettier-plugin-tailwindcss'],
overrides: [
{
files: '*.svelte',
options: {
parser: 'svelte'
}
}
],
tailwindStylesheet: './src/app.css'
};
export default config;