initial commit

This commit is contained in:
Joakim Repomaa
2026-02-17 02:15:25 +02:00
commit 72a636d175
55 changed files with 6171 additions and 0 deletions

20
.prettierrc.cjs Normal file
View File

@@ -0,0 +1,20 @@
module.exports = {
plugins: ['prettier-plugin-svelte'],
overrides: [
{
files: '*.svelte',
options: {
parser: 'svelte',
},
},
],
semi: true,
singleQuote: true,
tabWidth: 2,
trailingComma: 'es5',
printWidth: 100,
svelteSortOrder: 'options-scripts-markup-styles',
svelteStrictMode: false,
svelteBracketNewLine: true,
svelteAllowShorthand: true,
};