1
0
mirror of https://github.com/halleysfifthinc/Toyota-AVC-LAN synced 2025-06-07 07:56:21 +00:00

Copy settings to devcontainer

This commit is contained in:
Allen Hill 2023-09-03 19:29:09 -04:00
parent 82ab967b7c
commit d7af6529ef

View File

@ -18,7 +18,21 @@
"ms-vscode.cmake-tools",
"rockcat.avr-support",
"harikrishnan94.cxx-compiler-explorer"
]
],
"settings": {
"editor.formatOnSave": true,
"C_Cpp.codeAnalysis.clangTidy.checks.disabled": [
"clang-analyzer-core.NullDereference"
],
"C_Cpp.files.exclude": {
"build/**": true
},
"files.associations": {
"*.S": "avr"
},
"cmake.configureOnOpen": true,
"compilerexplorer.compilationDirectory": "${workspaceFolder}/build",
}
}
}
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.