From 8054198fd2f4647ace91f2702e180acdab20e011 Mon Sep 17 00:00:00 2001 From: Matthew Sevey <15232757+MSevey@users.noreply.github.com> Date: Thu, 14 Nov 2024 14:01:49 -0500 Subject: [PATCH] chore: add gitignore and fix lint issues --- .gitignore | 2 ++ Makefile | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2ded93d --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +coverage.txt + diff --git a/Makefile b/Makefile index 2a33e02..e9d6893 100644 --- a/Makefile +++ b/Makefile @@ -40,8 +40,6 @@ lint: vet @golangci-lint run @echo "--> Running markdownlint" @markdownlint --config .markdownlint.yaml '**/*.md' - @echo "--> Running hadolint" - @hadolint docker/mockserv.Dockerfile @echo "--> Running yamllint" @yamllint --no-warnings . -c .yamllint.yml