Fix up first version and add Prettier and Docker

This commit is contained in:
Bad Manners 2024-03-20 11:34:09 -03:00
parent 09a1919d36
commit 324050ee38
87 changed files with 2210 additions and 822 deletions

10
.prettierrc.mjs Normal file
View file

@ -0,0 +1,10 @@
/** @type {import("prettier").Config} */
export default {
trailingComma: "all",
tabWidth: 2,
semi: true,
singleQuote: false,
printWidth: 120,
bracketSpacing: true,
plugins: ["prettier-plugin-astro", "prettier-plugin-tailwindcss"],
};