vscode config (#1227)

* vscode config

* actually don't hide those

* format
This commit is contained in:
Matthew Kennedy 2020-03-26 05:02:37 -07:00 committed by GitHub
parent a5d4d06868
commit a410e00609
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 60 additions and 14 deletions

28
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,28 @@
{
// 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": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/unit_tests/build/rusefi_test",
// uncomment args below to only debug a particular test
//"args": ["--gtest_filter=etb.testTargetTpsIsFloatBug945"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/unit_tests/build/",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}

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

@ -0,0 +1,32 @@
{
"files.associations": {
"xstring": "cpp",
"ios": "cpp",
"xlocale": "cpp",
"xtr1common": "cpp",
"xiosbase": "cpp",
"deque": "cpp",
"forward_list": "cpp",
"list": "cpp",
"system_error": "cpp",
"vector": "cpp",
"xhash": "cpp",
"xtree": "cpp"
},
"editor.detectIndentation": false,
"editor.insertSpaces": false,
"files.exclude": {
"**/.dep": true,
"**/build/lst": true,
"**/build/obj": true,
"hardware/": true,
"misc/": true,
},
"search.exclude": {
"**/.dep": true,
"**/build/lst": true,
"**/build/obj": true,
"hardware/": true,
"misc/": true,
},
}

View File

@ -1,14 +0,0 @@
{
"editor.detectIndentation": false,
"editor.insertSpaces": false,
"files.exclude": {
".dep": true,
"build/lst": true,
"build/obj": true,
},
"search.exclude": {
".dep": true,
"build/lst": true,
"build/obj": true,
},
}