Makefile: Use -trimpath while building #25

Merged
fyrchik merged 2 commits from fyrchik/linters:fix-linters into master 2024-09-04 19:51:22 +00:00
2 changed files with 3 additions and 2 deletions

View file

@ -47,7 +47,7 @@ linters:
- bidichk
- durationcheck
- exhaustive
- exportloopref
- copyloopvar
- gofmt
- goimports
- misspell

View file

@ -6,7 +6,8 @@ test:
lib:
@mkdir -pv $(OUT_DIR)
@go build -buildmode=plugin -o $(OUT_DIR)/external_linters.so $(PLUGIN_SOURCE)
@go build -buildmode=plugin -trimpath \
-o $(OUT_DIR)/external_linters.so $(PLUGIN_SOURCE)
lint:
@golangci-lint run