vscode config (#1227)
* vscode config * actually don't hide those * format
This commit is contained in:
parent
a5d4d06868
commit
a410e00609
|
@ -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
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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,
|
||||
},
|
||||
}
|
|
@ -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,
|
||||
},
|
||||
}
|
Loading…
Reference in New Issue