vscode setup

This commit is contained in:
proddy
2023-03-05 09:44:50 +01:00
parent e6f9d9b3c8
commit de59434d95
8 changed files with 552 additions and 26 deletions

9
.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,9 @@
{
"recommendations": [
"platformio.platformio-ide",
"arcanis.vscode-zipfs",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode"
],
"unwantedRecommendations": ["ms-vscode.cpptools-extension-pack"]
}

10
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,10 @@
{
"search.exclude": {
"**/.yarn": true,
"**/.pnp.*": true
},
"eslint.nodePath": "interface/.yarn/sdks",
"prettier.prettierPath": "interface/.yarn/sdks/prettier/index.js",
"typescript.tsdk": "interface/.yarn/sdks/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true
}

2
.vscode/tasks.json vendored
View File

@@ -10,7 +10,7 @@
"linux": {
"options": {
"env": {
// Workaroung for sdl2 `-m32` crash
// Workaround for sdl2 `-m32` crash
// https://bugs.launchpad.net/ubuntu/+source/libsdl2/+bug/1775067/comments/7
"DBUS_FATAL_WARNINGS": "0"
}