mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-03-31 21:55:34 +02:00
8 lines
152 B
Bash
Executable File
8 lines
152 B
Bash
Executable File
#!/bin/bash
|
|
FILES=$(git diff --staged --diff-filter=AM --no-renames --name-only)
|
|
|
|
gofumpt -s -l -w $FILES
|
|
golangci-lint run --new --fix
|
|
|
|
git add $FILES
|