-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: switch over to using nix flakes (#117)
- Loading branch information
1 parent
95c81bd
commit 19d8b8b
Showing
6 changed files
with
41 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
use flake |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,31 @@ | ||
# Binaries for programs and plugins | ||
*.exe | ||
*.exe~ | ||
*.dll | ||
*.so | ||
*.dylib | ||
/nsv | ||
# Ignore everything and selectively allow files | ||
* | ||
|
||
# Test binary, built with `go test -c` | ||
*.test | ||
# Allow project files | ||
!.deepsource.toml | ||
!.github/**/* | ||
!.gitignore | ||
!.golangci.yml | ||
!.goreleaser.yml | ||
!CODEOWNERS | ||
!CODE_OF_CONDUCT.md | ||
!Dockerfile | ||
!htmltest.yml | ||
!LICENSE | ||
!mkdocs.yml | ||
!README.md | ||
!Taskfile.yml | ||
|
||
# Output of the go coverage tool, specifically when used with LiteIDE | ||
*.out | ||
unittest-cover.txt | ||
# Allow Nix files | ||
!.envrc | ||
!flake.nix | ||
!flake.lock | ||
|
||
# Dependency directories (remove the comment below to include it) | ||
# vendor/ | ||
# Allow Go files | ||
!*.go | ||
!*.tape | ||
!go.sum | ||
!go.mod | ||
|
||
# GoReleaser | ||
completions/ | ||
dist/ | ||
manpages/ | ||
|
||
# Ignore IDEs | ||
.vscode | ||
|
||
# Material for MkDocs | ||
.cache | ||
.DS_Store | ||
# Recurse through sub-directories applying the same patterns | ||
!*/ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters