From 8e05d1af8bb5e3097799d0c152ab804744a5171b Mon Sep 17 00:00:00 2001 From: John Long Date: Tue, 10 Sep 2024 16:33:54 -0400 Subject: [PATCH] moved gitignore to correct locations --- examples/go/hello-world/kubefox/.gitignore | 66 ++++++++++++++++++- .../go/hello-world/{ => native}/.gitignore | 0 2 files changed, 65 insertions(+), 1 deletion(-) rename examples/go/hello-world/{ => native}/.gitignore (100%) diff --git a/examples/go/hello-world/kubefox/.gitignore b/examples/go/hello-world/kubefox/.gitignore index 6a3e68d..33535b5 100644 --- a/examples/go/hello-world/kubefox/.gitignore +++ b/examples/go/hello-world/kubefox/.gitignore @@ -1 +1,65 @@ -**/.DS_Store \ No newline at end of file +## Go ## +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Dependency directories (remove the comment below to include it) +# vendor/ + +# Go workspace file +go.work +go.work.sum + +# env file +.env + + +## VSCode ## +# General +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for VSCode +.history/ + +# Built VSCode Extensions +*.vsix + + +## Mac OS ## +# General +.DS_Store +.AppleDouble +.LSOverride + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk diff --git a/examples/go/hello-world/.gitignore b/examples/go/hello-world/native/.gitignore similarity index 100% rename from examples/go/hello-world/.gitignore rename to examples/go/hello-world/native/.gitignore