-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWSpace.code-workspace
executable file
·59 lines (56 loc) · 1.86 KB
/
WSpace.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.stickyTabStops": true,
"todohighlight.keywords": [
{
"text": "NOTE:",
"color": "#ffffff",
"backgroundColor": "#4169E1",
"overviewRulerColor": "#0000FF"
},
{
"text": "BUG:",
"color": "#ffffff",
"backgroundColor": "#32CD32",
"overviewRulerColor": "#32CD32"
},
],
"cortex-debug.enableTelemetry": false,
"cmake.revealLog": "always",
"cmake.statusbar.visibility": "compact",
"cmake.configureOnOpen": true,
"cmake.configureSettings": {
"IDE": "VSCODE",
"ASTYLE": "CHANGES",
//"CROSS_COMPILE": "/opt/gcc-arm-none-eabi/bin/arm-none-eabi-",
"compileCommands": "${workspaceFolder}/build/compile_commands.json"
},
"C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools",
"C_Cpp.default.compileCommands": "${workspaceFolder}/build/compile_commands.json",
"C_Cpp.intelliSenseEngineFallback": "Enabled",
"C_Cpp.vcpkg.enabled": false,
"C_Cpp.formatting": "Disabled",
"c-cpp-flylint.language": "c",
"c-cpp-flylint.clang.enable": false,
"c-cpp-flylint.flexelint.enable": false,
"c-cpp-flylint.lizard.enable": false,
"c-cpp-flylint.flawfinder.enable": false,
"c-cpp-flylint.cppcheck.addons": [
"/opt/CppCheck/addons/misra.json"
],
"c-cpp-flylint.cppcheck.severityLevels": {
"style": "Hint"
},
"astyle.cmd_options": [
"--options=${workspaceFolder}/.astylerc",
],
"files.associations": {
"fatfs.h": "c"
},
}
}