Skip to content

Commit

Permalink
update .gitignore
Browse files Browse the repository at this point in the history
Signed-off-by: Gonçalo Negrier Duarte <[email protected]>
  • Loading branch information
MrDuartePT committed Aug 22, 2024
1 parent 4c87831 commit 0fbdc58
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 78 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Vscode
.vscode/

# Python
__pycache__/

Expand Down
38 changes: 17 additions & 21 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,18 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"/usr/include",
"/usr/local/include",
"/usr/src/linux-headers-5.19.0-28/include",
"/usr/src/linux-headers-5.19.0-28-generic/include",
"/usr/src/linux-headers-5.19.0-28/arch/x86/include",
"/usr/lib/gcc/x86_64-linux-gnu/12/include/"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c99",
"cppStandard": "c++14",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}
"configurations": [
{
"name": "linux-gcc-x64",
"includePath": [
"${workspaceFolder}/**"
],
"compilerPath": "/usr/bin/gcc",
"cStandard": "${default}",
"cppStandard": "${default}",
"intelliSenseMode": "linux-gcc-x64",
"compilerArgs": [
""
]
}
],
"version": 4
}
114 changes: 57 additions & 57 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,59 +1,59 @@
{
"files.associations": {
"hwmon-sysfs.h": "c",
"acpi.h": "c",
"device.h": "c",
"system_error": "c",
"array": "c",
"functional": "c",
"tuple": "c",
"type_traits": "c",
"utility": "c",
"hash_map": "c",
"string_view": "c",
"initializer_list": "c",
"algorithm": "c",
"atomic": "c",
"bit": "c",
"*.tcc": "c",
"cctype": "c",
"cerrno": "c",
"cfloat": "c",
"climits": "c",
"clocale": "c",
"cmath": "c",
"compare": "c",
"concepts": "c",
"cstdarg": "c",
"cstddef": "c",
"cstdint": "c",
"cstdio": "c",
"cstdlib": "c",
"cwchar": "c",
"cwctype": "c",
"deque": "c",
"list": "c",
"string": "c",
"unordered_map": "c",
"vector": "c",
"exception": "c",
"iterator": "c",
"memory": "c",
"memory_resource": "c",
"numeric": "c",
"random": "c",
"ios": "c",
"iosfwd": "c",
"limits": "c",
"new": "c",
"numbers": "c",
"ostream": "c",
"queue": "c",
"stdexcept": "c",
"streambuf": "c",
"typeinfo": "c",
"debugfs.h": "c",
"kernel.h": "c",
"leds.h": "c"
}
"C_Cpp_Runner.cCompilerPath": "gcc",
"C_Cpp_Runner.cppCompilerPath": "g++",
"C_Cpp_Runner.debuggerPath": "gdb",
"C_Cpp_Runner.cStandard": "",
"C_Cpp_Runner.cppStandard": "",
"C_Cpp_Runner.msvcBatchPath": "",
"C_Cpp_Runner.useMsvc": false,
"C_Cpp_Runner.warnings": [
"-Wall",
"-Wextra",
"-Wpedantic",
"-Wshadow",
"-Wformat=2",
"-Wcast-align",
"-Wconversion",
"-Wsign-conversion",
"-Wnull-dereference"
],
"C_Cpp_Runner.msvcWarnings": [
"/W4",
"/permissive-",
"/w14242",
"/w14287",
"/w14296",
"/w14311",
"/w14826",
"/w44062",
"/w44242",
"/w14905",
"/w14906",
"/w14263",
"/w44265",
"/w14928"
],
"C_Cpp_Runner.enableWarnings": true,
"C_Cpp_Runner.warningsAsError": false,
"C_Cpp_Runner.compilerArgs": [],
"C_Cpp_Runner.linkerArgs": [],
"C_Cpp_Runner.includePaths": [],
"C_Cpp_Runner.includeSearch": [
"*",
"**/*"
],
"C_Cpp_Runner.excludeSearch": [
"**/build",
"**/build/**",
"**/.*",
"**/.*/**",
"**/.vscode",
"**/.vscode/**"
],
"C_Cpp_Runner.useAddressSanitizer": false,
"C_Cpp_Runner.useUndefinedSanitizer": false,
"C_Cpp_Runner.useLeakSanitizer": false,
"C_Cpp_Runner.showCompilationTime": false,
"C_Cpp_Runner.useLinkTimeOptimization": false,
"C_Cpp_Runner.msvcSecureNoWarnings": false
}

0 comments on commit 0fbdc58

Please sign in to comment.