mock icon indicating copy to clipboard operation
mock copied to clipboard

Toggle off all comments

Open SamuelCabralCruz opened this issue 3 years ago • 1 comments

Would be nice to have a flag to toggle off all generated comments not only the package one.

SamuelCabralCruz avatar Jan 13 '22 04:01 SamuelCabralCruz

For the time being, I made a simple make recipe with the following snippet after the execution of mockgen:

	@head -n 2 $(destination) > $(destination).tmp
	@grep -v '^//' $(destination) >> $(destination).tmp
	@mv $(destination).tmp $(destination)

where destination is the location of the auto-generated file

SamuelCabralCruz avatar Jan 13 '22 14:01 SamuelCabralCruz