a6818fd4cb
Moby is not a Go module; to prevent anyone from mistakenly trying to
convert it to one before we are ready, introduce a check (usable in CI
and locally) for a go.mod file.
This is preferable to trying to .gitignore the file as we can ensure
that a mistakenly created go.mod is surfaced by Git-based tooling and is
less likely to surprise a contributor.
Signed-off-by: Bjorn Neergaard <bneergaard@mirantis.com>
(cherry picked from commit 25c3421802
)
Signed-off-by: Bjorn Neergaard <bneergaard@mirantis.com>
28 lines
460 B
Text
28 lines
460 B
Text
# If you want to ignore files created by your editor/tools, please consider a
|
|
# [global .gitignore](https://help.github.com/articles/ignoring-files).
|
|
|
|
*~
|
|
*.bak
|
|
*.orig
|
|
.*.swp
|
|
.DS_Store
|
|
thumbs.db
|
|
|
|
# local repository customization
|
|
.envrc
|
|
.bashrc
|
|
.editorconfig
|
|
|
|
# build artifacts
|
|
bundles/
|
|
cli/winresources/*/*.syso
|
|
cli/winresources/*/winres.json
|
|
contrib/builder/rpm/*/changelog
|
|
|
|
# ci artifacts
|
|
*.exe
|
|
*.gz
|
|
go-test-report.json
|
|
junit-report.xml
|
|
profile.out
|
|
test.main
|