setup gitignore
parent
6da9e7a17d
commit
fc332b5119
|
@ -0,0 +1,100 @@
|
|||
go-import-redirector
|
||||
go-import-redirector.yaml
|
||||
**.old
|
||||
|
||||
# CI output
|
||||
/dist/
|
||||
|
||||
##############################################
|
||||
## Golang things...
|
||||
##############################################
|
||||
# Binaries for programs and plugins
|
||||
*.exe
|
||||
*.exe~
|
||||
*.dll
|
||||
*.so
|
||||
*.dylib
|
||||
|
||||
# Test binary, built with `go test -c`
|
||||
*.test
|
||||
|
||||
# Output of the go coverage tool,
|
||||
*.out
|
||||
|
||||
# Dependency directories
|
||||
/vendor/
|
||||
|
||||
# Go workspace file
|
||||
go.work
|
||||
|
||||
##############################################
|
||||
## VSCode
|
||||
##############################################
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
!.vscode/*.code-snippets
|
||||
*.code-workspace
|
||||
|
||||
# Local History for Visual Studio Code
|
||||
.history/
|
||||
|
||||
# Built Visual Studio Code Extensions
|
||||
*.vsix
|
||||
|
||||
##############################################
|
||||
## Generic Tool/OS files...
|
||||
##############################################
|
||||
|
||||
## Kate
|
||||
.*.kate-swp
|
||||
.swp.*
|
||||
|
||||
## Linux
|
||||
*~
|
||||
# temporary files which can be created if a process still has a handle open of a deleted file
|
||||
.fuse_hidden*
|
||||
|
||||
# KDE directory preferences
|
||||
.directory
|
||||
|
||||
# Linux trash folder which might appear on any partition or disk
|
||||
.Trash-*
|
||||
|
||||
# .nfs files are created when an open file is removed but is still being accessed
|
||||
.nfs*
|
||||
|
||||
## Notepad++
|
||||
*.bak
|
||||
|
||||
## Patch files
|
||||
*.orig
|
||||
*.rej
|
||||
|
||||
## Windows
|
||||
# Windows thumbnail cache files
|
||||
Thumbs.db
|
||||
Thumbs.db:encryptable
|
||||
ehthumbs.db
|
||||
ehthumbs_vista.db
|
||||
|
||||
# Dump file
|
||||
*.stackdump
|
||||
|
||||
# Folder config file
|
||||
[Dd]esktop.ini
|
||||
|
||||
# Recycle Bin used on file shares
|
||||
$RECYCLE.BIN/
|
||||
|
||||
# Windows Installer files
|
||||
*.cab
|
||||
*.msi
|
||||
*.msix
|
||||
*.msm
|
||||
*.msp
|
||||
|
||||
# Windows shortcuts
|
||||
*.lnk
|
Loading…
Reference in New Issue