We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06d4dac commit e234cfcCopy full SHA for e234cfc
go/lint-project.sh
@@ -175,7 +175,7 @@ if [[ "$OS_NAME" != "windows" ]]; then
175
fi
176
177
./bin/golangci-lint --version
178
- ./bin/golangci-lint run "$enabled" --verbose --skip-dirs="(admin|client)" --timeout=5m --disable=errcheck
+ ./bin/golangci-lint run "$enabled" "$GOLANGCI_FLAGS" --verbose --skip-dirs="(admin|client)" --timeout=5m --disable=errcheck
179
180
echo "finished golangci-lint check"
181
makefile
@@ -2,7 +2,7 @@ PLATFORM=$(shell uname -s | tr '[:upper:]' '[:lower:]')
2
3
.PHONY: check
4
check:
5
- EXPERIMENTAL=gitleaks GOCYCLO_LIMIT=15 ./go/lint-project.sh
+ EXPERIMENTAL=gitleaks GOCYCLO_LIMIT=15 GOLANGCI_FLAGS="--exclude-use-default=false" ./go/lint-project.sh
6
7
.PHONY: clean
8
clean:
0 commit comments