-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes args on -repo hooks; Fleshes out alias/names in docs; Removes '…
…-' (#16) * Fixes formatter `-repo` hooks to allow hook args * Fleshes out alias/names section in README for - Short alias for easier CLI usage - Using alias/name for hook variations * Removes '-' as an alias for '--' BREAKING CHANGE: No longer treats '-' as an alias for '--'
- Loading branch information
Showing
7 changed files
with
69 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/usr/bin/env bash | ||
error_on_output=1 | ||
cmd=(gofmt -l -d .) | ||
cmd=(gofmt -l -d) | ||
target=(.) | ||
. "$(dirname "${0}")/lib/cmd-repo.bash" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/usr/bin/env bash | ||
error_on_output=1 | ||
cmd=(gofumpt -l -d .) | ||
cmd=(gofumpt -l -d) | ||
target=(.) | ||
. "$(dirname "${0}")/lib/cmd-repo.bash" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/usr/bin/env bash | ||
error_on_output=1 | ||
cmd=(goimports -l -d .) | ||
cmd=(goimports -l -d) | ||
target=(.) | ||
. "$(dirname "${0}")/lib/cmd-repo.bash" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/usr/bin/env bash | ||
error_on_output=1 | ||
cmd=(goreturns -l -d .) | ||
cmd=(goreturns -l -d) | ||
target=(.) | ||
. "$(dirname "${0}")/lib/cmd-repo.bash" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters