chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:37:57 +08:00
commit e30f8ba47c
533 changed files with 115926 additions and 0 deletions
Executable
+15
View File
@@ -0,0 +1,15 @@
set -eu
# first run go fmt
gofmt -s -w .
BINDIR="$(git rev-parse --show-toplevel)"/bin
BINARY=$BINDIR/golangci-lint
# sync with .github/workflows/lint.yml
GOLANGCI_LINT_VERSION=v2.9.0
if [ ! -f "$BINARY" ]; then
curl -sSfL https://golangci-lint.run/install.sh | sh -s -- -b "$BINDIR" "$GOLANGCI_LINT_VERSION"
fi
$BINARY run