From 9c7b65b74c4bc35bb10eefa206313638839ace7a Mon Sep 17 00:00:00 2001
From: Johannes Schriewer <hallo@dunkelstern.de>
Date: Sat, 28 Jul 2018 02:38:07 +0200
Subject: [PATCH] VSCode settings updated to squelch linter

---
 .vscode/c_cpp_properties.json | 2 ++
 .vscode/settings.json         | 3 ++-
 tests/Makefile                | 2 +-
 3 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json
index bba3e19..6e15bc0 100644
--- a/.vscode/c_cpp_properties.json
+++ b/.vscode/c_cpp_properties.json
@@ -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"
                 ]
             },
diff --git a/.vscode/settings.json b/.vscode/settings.json
index e886cdc..97a143c 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -11,6 +11,7 @@
         "ratio": "c",
         "system_error": "c",
         "array": "c",
-        "string_view": "c"
+        "string_view": "c",
+        "packet.h": "c"
     }
 }
diff --git a/tests/Makefile b/tests/Makefile
index c0948ac..092c9fa 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -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