-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmd/go: 'go fmt ./...' does not see files with tags in subpackages #39442
Comments
I can confirm that I'm getting the same.
I'm not the most qualified person to ask, but I think that the behavior might be intended; gofmt just traverses the directory tree and formats the files, while go fmt works as the go command (same as go build or go run), in that it respects the build tags, and ignores packages that have some build constraints. On the other hand, I'm not sure whether the tags functionality is currently implemented for go fmt, so we might want to include it, in the same way that go build does. |
Tags apply per-file, not per-package. I think that current behavior is not consistent. First, Second, if I put a file without tags into bar/ then Also people rely on |
For what it's worth, I format with |
This does seem like a bug.
When expanding patterns like |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
I have a subpackage in my repo in which all files have a tag. I run
go fmt ./...
in the top directory of my repo.What did you expect to see?
I expect all Go files in my repo to be formatted including those with a tag.
What did you see instead?
Files in the subpackage were not formatted!
Here I proveded an example repo where everyone can reproduce the bug:
If there are files without tag in the same package (./bar in my case),
go fmt ./...
sees all the files and works as expected.The text was updated successfully, but these errors were encountered: