From 3cf0c302fc015436e3c5432d31c5096f22fc38f3 Mon Sep 17 00:00:00 2001 From: Oliver Borchert Date: Tue, 4 Oct 2022 02:24:45 +0200 Subject: [PATCH] Update gitignore to use template from gitignore.io (#34) --- .gitignore | 101 +++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 90 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index 3babdff..7b3eb13 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,93 @@ -# Editor -.vscode/ +# Created by https://www.toptal.com/developers/gitignore/api/macos,go,helm,visualstudiocode +# Edit at https://www.toptal.com/developers/gitignore?templates=macos,go,helm,visualstudiocode -# kubebuilder -/bin -/config +### Go ### +# If you prefer the allow list template instead of the deny list, see community template: +# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore +# +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib -# Tests -cover.out +# Test binary, built with `go test -c` +*.test -# Charts -Chart.lock -/chart/charts -*.tgz +# 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 Patch ### +/vendor/ +/Godeps/ + +### Helm ### +# Chart dependencies +**/charts/*.tgz + +### macOS ### +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + + +# 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 + +### macOS Patch ### +# iCloud generated files +*.icloud + +### VisualStudioCode ### +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix + +### VisualStudioCode Patch ### +# Ignore all local history of files +.history +.ionide + +# Support for Project snippet scope +.vscode/*.code-snippets + +# Ignore code-workspaces +*.code-workspace + +# End of https://www.toptal.com/developers/gitignore/api/macos,go,helm,visualstudiocode