Git-ignore temporary files from mockgen

Ignore files that can linger when [mockgen][1] fails to generate code.
They are indeed not meant to be committed.

[1]: https://github.com/golang/mock)
This commit is contained in:
Sybren A. Stüvel 2025-07-07 11:03:10 +02:00
parent 9e7e711ebd
commit f6338064ab

4
.gitignore vendored
View File

@ -22,6 +22,10 @@ flamenco-worker-credentials.yaml
node_modules/ node_modules/
/vendor/ /vendor/
# Mockgen creates those files temporarily, and they can linger when it
# fails to run properly. They should never be committed to Git.
gomock_reflect_*
# Directory for custom job compiler scripts: # Directory for custom job compiler scripts:
/scripts/ /scripts/