From 6093492c33bce3537ae55da7b2373719f1e16e93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Sch=C3=BCller?= Date: Tue, 18 Jun 2024 16:33:32 +0200 Subject: [PATCH] golangci: fix integration tests for images images also calls this linter but with path-prefix --- .golangci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.golangci.yml b/.golangci.yml index 0ee29297c..4174dc018 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -24,5 +24,5 @@ issues: # Maximum count of issues with the same text. Set to 0 to disable. Default is 3. max-same-issues: 0 exclude-rules: - - path: ^cmd/osbuild-worker-executor/.*_test\.go$ + - path: ^(osbuild-composer/)?cmd/osbuild-worker-executor/.*_test\.go$ linters: ["gosec"]