feat: add temp formatter settings

This commit is contained in:
Alex 2024-05-21 20:31:22 +02:00
parent fcb30f6319
commit b88f81b718

10
.vscode/settings.json vendored
View File

@ -1,5 +1,9 @@
{
"editor.formatOnSave": true,
"files.eol": "\n",
"typescript.tsdk": "node_modules/typescript/lib"
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"prettier.tabWidth": 4,
"prettier.printWidth": 140,
"prettier.singleQuote": true,
"files.eol": "\n",
"typescript.tsdk": "node_modules/typescript/lib"
}