Revert "Chore: Clean up some excludes and fix makefile" (#96068)

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

This reverts commit f2998037e5.
This commit is contained in:
Stephanie Hingtgen 2024-11-07 15:44:35 -07:00 committed by GitHub
parent 00c3c17035
commit a5bef386ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -230,6 +230,9 @@ 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.yml \
--config .golangci.toml \
$(GO_LINT_FILES)
.PHONY: lint-go