Configure prettier and ignore

This commit is contained in:
Jakob Moser 2025-11-13 00:11:59 +01:00
parent 6fe89af3cc
commit 5573a6b127
Signed by: jakob
GPG Key ID: 3EF2BA2851B3F53C
2 changed files with 19 additions and 0 deletions

14
.prettierignore Normal file
View File

@ -0,0 +1,14 @@
# Python-related
venv/
.venv/
__pycache__/
.mypy_cache/
# JavaScript-related
node_modules
# Local instance data and configuration
instance/
# Libraries
ui/static/lib

5
.prettierrc.json Normal file
View File

@ -0,0 +1,5 @@
{
"tabWidth": 4,
"semi": false,
"arrowParens": "avoid"
}