Merge pull request #2966 from gitbutlerapp/remove-vscode

remove .vscode folder
This commit is contained in:
Josh Junon 2024-03-01 14:11:20 +01:00 committed by GitHub
commit 3db987e8c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 0 additions and 46 deletions

View File

@ -1,10 +0,0 @@
{
"recommendations": [
"svelte.svelte-vscode",
"tauri-apps.tauri-vscode",
"rust-lang.rust-analyzer",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"EditorConfig.EditorConfig"
]
}

17
.vscode/launch.json vendored
View File

@ -1,17 +0,0 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "GitButler Dev",
"program": "${workspaceFolder}/target/debug/GitButler Dev",
"args": [],
"cwd": "${workspaceFolder}",
"preLaunchTask": "ui:dev",
}
]
}

View File

@ -1,5 +0,0 @@
{
"prettier.configPath": "./gitbutler-ui/.prettierrc",
"prettier.prettierPath": "./node_modules/prettier/index.cjs",
"prettier.useEditorConfig": false
}

14
.vscode/tasks.json vendored
View File

@ -1,14 +0,0 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "ui:dev",
"type": "shell",
"isBackground": true,
"command": "pnpm",
"args": [
"dev"
],
},
]
}