Skip to content

Commit

Permalink
Update gitignore to use template from gitignore.io (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
borchero authored Oct 4, 2022
1 parent 048f8b1 commit 3cf0c30
Showing 1 changed file with 90 additions and 11 deletions.
101 changes: 90 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 3cf0c30

Please sign in to comment.