41 lines
698 B
Plaintext
41 lines
698 B
Plaintext
# Allowlisting gitignore template for GO projects prevents us
|
|
# from adding various unwanted local files, such as generated
|
|
# files, developer configurations or IDE-specific files etc.
|
|
#
|
|
# Recommended: Go.AllowList.gitignore
|
|
|
|
# Ignore everything
|
|
*
|
|
|
|
# But not these files...
|
|
!/.gitignore
|
|
!/.vscode/*.json
|
|
!/.vscode/ltex.dictionary.*.txt
|
|
!/.github/**/*
|
|
!/.devcontainer/**/*
|
|
!.golangci.yaml
|
|
!.nfpm.yaml
|
|
!build/env.*
|
|
!build/scripts/*
|
|
!build/container/*
|
|
!codecov.yml
|
|
|
|
!/assets/**/*
|
|
!/internal/agent/ui/assets/*
|
|
!**/testdata/*
|
|
|
|
!*.md
|
|
!*.go
|
|
!go.sum
|
|
!go.mod
|
|
!cosign.*
|
|
!Dockerfile
|
|
|
|
!LICENSE
|
|
!deployments/mosquitto/config/mosquitto.conf.example
|
|
|
|
# ...even if they are in subdirectories
|
|
!*/
|
|
|
|
dist/
|
|
fyne-cross/ |