.gitignore
1# go compiler output file
2/git-bug
3
4# test binaries built with go test -c
5*.test
6
7# code coverage and test artifacts
8*.out
9coverage.*
10*.coverprofile
11profile.cov
12
13# editor configuration
14.idea/
15.vscode/
16
17# nix and direnv related tooling
18.envrc
19.envrc.local
20/.direnv/
21!/.envrc
22
23# symlinks to nix-store output dirs, created by `nix-build`
24/result
25/result-*