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": [
|
"includePath": [
|
||||||
"${workspaceRoot}/src",
|
"${workspaceRoot}/src",
|
||||||
"${workspaceRoot}/platform",
|
"${workspaceRoot}/platform",
|
||||||
|
"${workspaceRoot}/tests",
|
||||||
"/usr/include"
|
"/usr/include"
|
||||||
],
|
],
|
||||||
"defines": [
|
"defines": [
|
||||||
|
@ -17,6 +18,7 @@
|
||||||
"${workspaceRoot}",
|
"${workspaceRoot}",
|
||||||
"${workspaceRoot}/src",
|
"${workspaceRoot}/src",
|
||||||
"${workspaceRoot}/platform",
|
"${workspaceRoot}/platform",
|
||||||
|
"${workspaceRoot}/tests",
|
||||||
"/usr/include"
|
"/usr/include"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
|
@ -11,6 +11,7 @@
|
||||||
"ratio": "c",
|
"ratio": "c",
|
||||||
"system_error": "c",
|
"system_error": "c",
|
||||||
"array": "c",
|
"array": "c",
|
||||||
"string_view": "c"
|
"string_view": "c",
|
||||||
|
"packet.h": "c"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@ TARGETS=$(SRCS:%.c=%.test)
|
||||||
|
|
||||||
CC=clang
|
CC=clang
|
||||||
CFLAGS=-g -Os -Wall -I.. -I../src -I../platform -DDEBUG=1
|
CFLAGS=-g -Os -Wall -I.. -I../src -I../platform -DDEBUG=1
|
||||||
# -DTIMETRIAL
|
# git -DTIMETRIAL
|
||||||
LDFLAGS=
|
LDFLAGS=
|
||||||
LIBS=-L.. -lmqtt
|
LIBS=-L.. -lmqtt
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue