VSCode settings updated to squelch linter
This commit is contained in:
parent
6ff7d2a841
commit
9c7b65b74c
3 changed files with 5 additions and 2 deletions
2
.vscode/c_cpp_properties.json
vendored
2
.vscode/c_cpp_properties.json
vendored
|
@ -5,6 +5,7 @@
|
|||
"includePath": [
|
||||
"${workspaceRoot}/src",
|
||||
"${workspaceRoot}/platform",
|
||||
"${workspaceRoot}/tests",
|
||||
"/usr/include"
|
||||
],
|
||||
"defines": [
|
||||
|
@ -17,6 +18,7 @@
|
|||
"${workspaceRoot}",
|
||||
"${workspaceRoot}/src",
|
||||
"${workspaceRoot}/platform",
|
||||
"${workspaceRoot}/tests",
|
||||
"/usr/include"
|
||||
]
|
||||
},
|
||||
|
|
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
|
@ -11,6 +11,7 @@
|
|||
"ratio": "c",
|
||||
"system_error": "c",
|
||||
"array": "c",
|
||||
"string_view": "c"
|
||||
"string_view": "c",
|
||||
"packet.h": "c"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ TARGETS=$(SRCS:%.c=%.test)
|
|||
|
||||
CC=clang
|
||||
CFLAGS=-g -Os -Wall -I.. -I../src -I../platform -DDEBUG=1
|
||||
# -DTIMETRIAL
|
||||
# git -DTIMETRIAL
|
||||
LDFLAGS=
|
||||
LIBS=-L.. -lmqtt
|
||||
|
||||
|
|
Loading…
Reference in a new issue