From 5f250c2262551e246bd937fe5e61f47f7ab7a85a Mon Sep 17 00:00:00 2001
From: Fabian Seidl <fabian.b.seidl@stud.h-da.de>
Date: Mon, 9 May 2022 14:59:03 +0000
Subject: [PATCH] Addressed an issue with false positives when linting, not
 needed on this layer

See merge request danet/gosdn!306
---
 controller/Makefile | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/controller/Makefile b/controller/Makefile
index fdedd2e7b..6574425ce 100644
--- a/controller/Makefile
+++ b/controller/Makefile
@@ -40,15 +40,6 @@ unit-test: install-tools
 controller-test: install-tools
 	ENVIRONMENT=testing ./$(TOOLS_DIR)/gotestsum --junitfile report.xml --format testname -- -race -v -run TestRun
 
-lint: install-tools
-	./$(TOOLS_DIR)/golangci-lint run --config ../.golangci.yml | jq
-
-lint-fix: install-tools
-	./$(TOOLS_DIR)/golangci-lint run --config ../.golangci.yml --fix
-
-ci-lint:
-	golangci-lint run --config ../.gitlab/ci/.golangci-config/.golangci.yml --out-format code-climate | jq -r '.[] | "\(.location.path):\(.location.lines.begin) \(.description)"'
-
 ci-unit-test: ci-install-tools
 	ENVIRONMENT=testing gotestsum --junitfile report.xml --format testname -- -short -race $$( go list ./... | grep -v /forks/ | grep -v /mocks ) -v -coverprofile=coverage.out
 
-- 
GitLab