Skip to content

Commit

Permalink
✨ feature: integrate a gitignore file (#75)
Browse files Browse the repository at this point in the history
Right now the project has no gitignore file which causes files like
`.vscode` to show up as changed/ added files.

I've copied the gitignore from the main fiber repo
  • Loading branch information
r-52 authored Mar 31, 2021
1 parent 8a84698 commit 4d84709
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, built with `go test -c`
*.test
*.tmp

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# IDE files
.vscode
.DS_Store
.idea

# Misc
*.fiber.gz
*.fasthttp.gz
*.pprof
*.workspace

# Dependencies
/vendor/
vendor/
vendor
/Godeps/

0 comments on commit 4d84709

Please sign in to comment.