1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
# Ignore Git files and directories
.git
.gitignore
.gitattributes
# Ignore CI/CD and configuration files
.circleci/
.codacy.yml
.editorconfig
.all-contributorsrc
.codecov.yaml
.github/
golangci.yaml
mockery.yaml
# Ignore documentation and examples
*.md
docs/
examples/
# Ignore scripts
scripts/
# Ignore large images and assets
*.png
*.ico
*.svg
# Ignore GoReleaser build artifacts
dist/
# Ignore build directory except for docker-related files
build/*
!build/docker/
|