VSCode settings updated to squelch linter

This commit is contained in:
Johannes Schriewer 2018-07-28 02:38:07 +02:00
parent 6ff7d2a841
commit 9c7b65b74c
3 changed files with 5 additions and 2 deletions

View file

@ -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"
]
},

View file

@ -11,6 +11,7 @@
"ratio": "c",
"system_error": "c",
"array": "c",
"string_view": "c"
"string_view": "c",
"packet.h": "c"
}
}

View file

@ -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