Chore: Clean up some excludes and fix makefile (#96052)

clean up some excludes and fix makefile
This commit is contained in:
Serge Zaitsev 2024-11-07 19:05:10 +01:00 committed by GitHub
parent ac88461fe6
commit f2998037e5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 4 deletions

View File

@ -230,9 +230,6 @@ issues:
exclude-dirs:
- devenv
- scripts
exclude-files:
- pkg/util/xorm/*.go
- pkg/build/wire/*.go
exclude-rules:
- linters:
- stylecheck

View File

@ -305,7 +305,7 @@ test: test-go test-js ## Run all tests.
golangci-lint: $(GOLANGCI_LINT)
@echo "lint via golangci-lint"
$(GOLANGCI_LINT) run \
--config .golangci.toml \
--config .golangci.yml \
$(GO_LINT_FILES)
.PHONY: lint-go