chore: use prettier on typescript files as well

This commit is contained in:
Thijs Louisse 2024-12-18 21:20:14 +01:00 committed by Thijs Louisse
parent 9fbfb7034f
commit 61a7ed5329
2 changed files with 5 additions and 1 deletions

2
.gitignore vendored
View file

@ -1,7 +1,7 @@
## editors
/.idea
## disable this line one commit before changing contents that should be shared
/.vscode
# /.vscode
/*.code-workspace
/.history

View file

@ -5,5 +5,9 @@
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
},
"prettier.prettierPath": "node_modules/prettier"
}