- Notifications
You must be signed in to change notification settings - Fork231
fmt: introduce golangci-lint and go vet#802
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Draft
gen2thomas wants to merge1 commit intotinygo-org:devChoose a base branch fromgen2thomas:feature/linter
base:dev
Could not load branches
Branch not found:{{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline, and old review comments may become outdated.
Draft
Uh oh!
There was an error while loading.Please reload this page.
Conversation
This file contains hidden or 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
cf7063c to10751edCompare8ef1fd4 to534d4c1CompareSign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading.Please reload this page.
see#789
Some notes:
Install the linter locally by:
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/HEAD/install.sh | sh -s -- -b $(go env GOPATH)/bin v2.5.0or by a way of your choice:https://golangci-lint.run/docs/welcome/install/#local-installation.The current linter configuration is quite long, because we drop many linters caused by a single or only a few findings. This will usually decreased by the time, when those findings are fixed.
Because we have to skip some packages and this is not supported by the linters, we have to apply the linter to each allowed package (folder) separately.
This leads to following behavior for local run:
This leads to following behavior for CI run when using the make file in docker container or plain setup in runner (currently implemented in this PR):
Alternatively, there are 2 other PRs usingGitHub Action:
One other alternative way for CI would be to collect all usable packages in another folder and set this as the working directory, but this would introduce other problems:
TODO: