Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2021-09-01 09:14:27 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2021-09-01 16:52:05 +0300
commit3a0c2f7d0d7dbd9c2ade2cec1fa3ccb4152fca94 (patch)
tree95ac37a4be9b20c64919091f207ddc108c6c9036 /Makefile
parentfd3c51ee6391cc30208135f88dc07b6b1708fbfd (diff)
golangci: Drop strict linting rules
Back in ce3f2ee42 (Lint: split up "make lint" and "make lint-strict" configs, 2021-01-19), we have split up our linting rules into a "normal" set which needs to be satisfied for each CI run and a "strict" set which only runs on scheduled pipelines. I highly doubt that anybody ever takes a look at the strict linter job: there are no MRs which clean up any of its additional violations. Let's remove this job and be done with it. Anybody wishing to fix up linting rules can just play with our normal linting rules and is unlikely to use CI for this anyway.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 0 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 3697b44a4..66dc0a8f7 100644
--- a/Makefile
+++ b/Makefile
@@ -324,10 +324,6 @@ check-mod-tidy:
lint: ${GOLANGCI_LINT} libgit2
${Q}${GOLANGCI_LINT} run --build-tags "${GO_BUILD_TAGS}" --out-format tab --config ${GOLANGCI_LINT_CONFIG} ${GOLANGCI_LINT_OPTIONS}
-.PHONY: lint-strict
-lint-strict: lint
- ${Q}GOLANGCI_LINT_CONFIG=$(SOURCE_DIR)/.golangci-strict.yml $(MAKE) lint
-
.PHONY: format
## Run Go formatter and adjust imports.
format: ${GOIMPORTS} ${GOFUMPT}