From 86f56d2a80aa3e1cbe6febd2b92ebce54c666873 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Eckel?= Date: Thu, 4 Apr 2024 14:34:04 +0200 Subject: [PATCH] added some linter exclusions to let the monitor tool pass MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jürgen Eckel --- .golangci.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.golangci.yaml b/.golangci.yaml index ba0e7d4..3dcd13f 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -132,4 +132,10 @@ issues: - revive - path: docs/docs\.go linters: - - revive \ No newline at end of file + - revive + - path: monitor/mqtt_monitor_test\.go + linters: + - paralleltest + - path: monitor/.*\.go + linters: + - durationcheck \ No newline at end of file