diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-07-22 12:51:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-22 12:51:49 +0200 |
commit | 9bba3cffc08ba7cdf83af98f0b08510d8f4e0ac6 (patch) | |
tree | 06234d7baf93999a58f052add1ffeacbf454c508 /hack/golangci-lint.sh | |
parent | 1f357892521e6b5f8b9dd877b54b2cf9be96b826 (diff) | |
parent | 88b57dd9f1cb56c65e2ccce9979ce7e89c20a855 (diff) | |
download | podman-9bba3cffc08ba7cdf83af98f0b08510d8f4e0ac6.tar.gz podman-9bba3cffc08ba7cdf83af98f0b08510d8f4e0ac6.tar.bz2 podman-9bba3cffc08ba7cdf83af98f0b08510d8f4e0ac6.zip |
Merge pull request #15010 from Luap99/machine-e2e
enable linter for pkg/machine/e2e
Diffstat (limited to 'hack/golangci-lint.sh')
-rwxr-xr-x | hack/golangci-lint.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hack/golangci-lint.sh b/hack/golangci-lint.sh index 2eaf206d7..dd06004ac 100755 --- a/hack/golangci-lint.sh +++ b/hack/golangci-lint.sh @@ -9,9 +9,9 @@ BUILD_TAGS[abi]="${BUILD_TAGS[default]},systemd" BUILD_TAGS[tunnel]="${BUILD_TAGS[default]},remote" declare -A SKIP_DIRS -SKIP_DIRS[abi]="pkg/machine/e2e" +SKIP_DIRS[abi]="" # TODO: add "remote" build tag to pkg/api -SKIP_DIRS[tunnel]="pkg/api,pkg/machine/e2e" +SKIP_DIRS[tunnel]="pkg/api" [[ $1 == run ]] && shift |