forked from golangci/golangci-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a pre-commit hook to check all files (golangci#4046)
- Loading branch information
Showing
1 changed file
with
9 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,16 @@ | ||
- id: golangci-lint | ||
name: golangci-lint | ||
description: Fast linters runner for Go. | ||
description: Fast linters runner for Go. Note that only modified files are linted, so linters like 'unused' that need to scan all files won't work as expected. | ||
entry: golangci-lint run --new-from-rev HEAD --fix | ||
types: [go] | ||
language: golang | ||
require_serial: true | ||
pass_filenames: false | ||
- id: golangci-lint-full | ||
name: golangci-lint-full | ||
description: Fast linters runner for Go. Runs on all files in the repo. Use this hook if you use pre-commit in CI. | ||
entry: golangci-lint run --fix | ||
types: [go] | ||
language: golang | ||
require_serial: true | ||
pass_filenames: false |