Commit 17604fe
committed
fix(go-lint): exclude vendor/ from gofmt check
gofmt -l . scans all .go files including vendor/, which contains
third-party code that should not be reformatted. Use find with
-not -path './vendor/*' to skip vendor directory.
go vet ./... already skips vendor/ by default.1 parent 05cb83e commit 17604fe
1 file changed
Lines changed: 2 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
66 | | - | |
| 66 | + | |
67 | 67 | | |
68 | 68 | | |
69 | 69 | | |
| |||
83 | 83 | | |
84 | 84 | | |
85 | 85 | | |
| 86 | + | |
86 | 87 | | |
87 | 88 | | |
88 | 89 | | |
| |||
0 commit comments