first commit

This commit is contained in:
2026-06-28 15:11:45 -04:00
commit 7e0e3a6289
109 changed files with 19187 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
// Typescript file would be better but it's currently experimental
const config = {
semi: false,
singleQuote: true,
trailingComma: 'all',
printWidth: 90,
tabWidth: 2,
useTabs: false,
plugins: ['prettier-plugin-astro'],
overrides: [
{
files: '*.astro',
options: {
parser: 'astro',
},
},
],
}
export default config