chore: init

This commit is contained in:
enscribe 2024-09-10 10:08:41 -07:00
commit f6dcc302d4
No known key found for this signature in database
GPG key ID: 9BBD5C4114E25322
118 changed files with 13645 additions and 0 deletions

17
.prettierrc.mjs Normal file
View file

@ -0,0 +1,17 @@
// .prettierrc.mjs
/** @type {import("prettier").Config} */
export default {
plugins: [
"prettier-plugin-astro",
"prettier-plugin-organize-imports",
"prettier-plugin-tailwindcss",
],
overrides: [
{
files: "*.astro",
options: {
parser: "astro",
},
},
],
};