Remove .vscode directory

This commit is contained in:
John Wesley 2024-06-06 16:36:50 -04:00
parent cfe57c6b37
commit 94bfd2e889
2 changed files with 1 additions and 35 deletions

2
.gitignore vendored
View File

@ -19,7 +19,7 @@ migrate_working_dir/
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/
.vscode/
# Flutter/Dart/Pub related
**/doc/api/

34
.vscode/launch.json vendored
View File

@ -1,34 +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": [
{
"name": "interstellar",
"request": "launch",
"type": "dart",
"program": "lib/main.dart",
"args": [
]
},
{
"name": "interstellar (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile",
"program": "lib/main.dart",
"args": [
]
},
{
"name": "interstellar (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release",
"program": "lib/main.dart",
"args": [
]
}
]
}