diff options
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/c_cpp_properties.json | 10 | ||||
-rw-r--r-- | .vscode/settings.json | 7 |
2 files changed, 17 insertions, 0 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 4ae342a..02a16ac 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -6,6 +6,11 @@ "/usr/include/**", "${workspaceFolder}/src/**" ], + "forcedInclude": [ + "${workspaceFolder}/src/freeradius-devel/autoconf.h", + "${workspaceFolder}/src/freeradius-devel/build.h", + "${workspaceFolder}/src/freeradius-devel/features.h" + ], "defines": [], "compilerPath": "/usr/bin/clang", "cStandard": "c11", @@ -17,6 +22,11 @@ "includePath": [ "${workspaceFolder}/src/**" ], + "forcedInclude": [ + "${workspaceFolder}/src/freeradius-devel/autoconf.h", + "${workspaceFolder}/src/freeradius-devel/build.h", + "${workspaceFolder}/src/freeradius-devel/features.h" + ], "defines": [], "compilerPath": "/usr/bin/clang", "cStandard": "c11", diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..fb1d4c1 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "files.trimTrailingWhitespace": true, + "files.insertFinalNewline": true, + "[diff]" : { + "files.trimTrailingWhitespace": false + } +} |