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

View file

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

View file

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