mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
17 lines
253 B
Bash
Executable File
17 lines
253 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
|
|
./bin/golangci-lint run
|
|
|
|
# ./bin/golangci-lint \
|
|
# --tests \
|
|
# --vendor \
|
|
# --disable=aligncheck \
|
|
# --disable=gotype \
|
|
# --disable=goconst \
|
|
# --disable=gocyclo \
|
|
# --deadline=300s \
|
|
# ./...
|