chore: configure prettier to mind its own business

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I446dc88e7dab36f8955338d650b85ac46a6a6964
This commit is contained in:
raf 2026-04-08 22:00:21 +03:00
commit 91119c8774
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
2 changed files with 35 additions and 0 deletions

28
.prettierignore Normal file
View file

@ -0,0 +1,28 @@
# Dependencies
node_modules/
# Build output
dist/
# Generated types
.astro/
# Misc
.DS_Store
.env
.env.*
!.env.example
# Debugging
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# Things handled by other linters
*.md
*.yaml
*.yml
*.json
!.prettierrc
!.package.json

7
.prettierrc Normal file
View file

@ -0,0 +1,7 @@
{
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100,
"plugins": []
}