Conversation
Codecov Report
@@ Coverage Diff @@
## master #2903 +/- ##
==========================================
+ Coverage 98.14% 98.17% +0.03%
==========================================
Files 143 143
Lines 12606 12609 +3
==========================================
+ Hits 12372 12379 +7
+ Misses 159 156 -3
+ Partials 75 74 -1
📢 Have feedback on the report? Share it here. |
|
Codecov didn't like that I modified an uncovered line, so I added a test for it. |
|
I'm doing a crazy amount of driving today, so will be slow to respond. I try to "approve run" of the checks when I can, but today's going to be pretty challenging, sorry. |
|
@gmlewis I appreciate how responsive you are on this repo. I have no expectation that you or anybody else be around on a weekend. I can see the lint results on my fork, so my feedback loop is just fine. |
# Conflicts: # example/go.mod # example/go.sum
gmlewis
left a comment
There was a problem hiding this comment.
Wow, @WillAbides - thank you for this huge cleanup! It is greatly appreciated!
LGTM.
Awaiting second LGTM+Approval from any other contributor to this repo before merging.
|
Thank you, @gabriel-samfira ! |
I noticed that
.golangci.ymlhad some commented out and disabled linters. This PR fixes that. It also uncomments "example" from the GitHub action.Running
go mod tidy -compat 1.17fixed the "no go files to analyze" error linting "examples".1For the linting issues, I updated
.golangci-lintand fixed the issues that it found.I think most of the changes are obvious, but I want to mention a few things:
stringifyValueto accept a*bytes.Bufferinstead of anio.Writerbecause the linter knows thatBuffer.Writealways returns nil errors.authorizations_test.goFootnotes
examples/go.* changes were originally part of this PR, but merging Remove dependency on "golang.org/x/oauth2" #2895 removed them from the diff. ↩