-
Notifications
You must be signed in to change notification settings - Fork 126
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
Make the outputted "code generated" comment compatible with go generate #60
base: master
Are you sure you want to change the base?
Conversation
…ate` manual Go generate manual (`go help generate`) states: ``` To convey to humans and machine tools that code is generated, generated source should have a line early in the file that matches the following regular expression (in Go syntax): ^// Code generated .* DO NOT EDIT\.$ ```` This change modifies the generated header comment to match the description of Go generate manual.
go generate
manualgo generate
go generate
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unless someone is depending on the old comment header, which they should not. I don't see why not.
Anything missing on my side to get this merged? |
any movement on this? |
@xiegeo any reason why this can't be merged? |
this resolves #63 |
@ghostsquad Sorry, I'm not a maintainer of this project so I don't have merging powers. I was doing a bunch of reviews requested and thought this was one of them. @pdrum is the most recent maintainer that I know of. |
Sad when valuable OSS projects go "dark". I had to start a release on my own fork until this is merged. Maybe it's time to look for a new owner? @pdrum |
Go generate manual (
go help generate
) states:This change modifies the generated header comment to match the description of go generate manual.