From fc332b511972e335327023aae61924b10ce1142f Mon Sep 17 00:00:00 2001 From: Gapodo Date: Sat, 25 Nov 2023 20:58:30 +0100 Subject: [PATCH] setup gitignore --- .gitignore | 100 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..80d75b7 --- /dev/null +++ b/.gitignore @@ -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