63 lines
1.1 KiB
Plaintext
63 lines
1.1 KiB
Plaintext
# 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
|
|
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Code coverage profiles and other test artifacts
|
|
*.out
|
|
coverage.*
|
|
*.coverprofile
|
|
profile.cov
|
|
|
|
# Dependency directories (remove the comment below to include it)
|
|
# vendor/
|
|
|
|
# Go workspace file
|
|
go.work
|
|
go.work.sum
|
|
|
|
# env file
|
|
.env
|
|
|
|
# pigo config files (may contain plaintext API keys)
|
|
config.toml
|
|
**/config.toml
|
|
.pigo/
|
|
|
|
# Editor/IDE
|
|
# .idea/
|
|
# .vscode/
|
|
|
|
.loop-state.json
|
|
|
|
# Compiled binary (go build ./cmd/pigo produces ./pigo)
|
|
/pigo
|
|
|
|
# goreleaser output
|
|
/dist/
|
|
.graph_state
|
|
graph.html
|
|
|
|
# Book build products (source in, products out — see book/README.md)
|
|
book/*.pdf
|
|
book/book.tex
|
|
book/.build-bin/
|
|
book/*.aux
|
|
book/*.log
|
|
book/*.toc
|
|
book/*.out
|
|
book/*.bcf
|
|
book/*.bbl
|
|
book/*.blg
|
|
book/*.run.xml
|
|
# Figures pre-rendered from SVG by build_pdf.sh (rsvg-convert); source is the .svg
|
|
book/images/*.pdf
|