Created
December 18, 2025 10:23
-
-
Save kiela/fa609341bc2b970297054ebe6a8faacc to your computer and use it in GitHub Desktop.
.helmignore
This file contains hidden or 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
| # Git files | |
| .git/ | |
| .gitignore | |
| .gitmodules | |
| .gitattributes | |
| # CI/CD files | |
| .github/ | |
| .gitlab-ci.yml | |
| .travis.yml | |
| Jenkinsfile | |
| .circleci/ | |
| # Documentation | |
| README.md | |
| CHANGELOG.md | |
| CONTRIBUTING.md | |
| LICENSE | |
| docs/ | |
| *.md | |
| # IDE/Editor files | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| .DS_Store | |
| Thumbs.db | |
| # OS files | |
| *.tmp | |
| *.temp | |
| .tmp/ | |
| # Development/Testing | |
| test/ | |
| tests/ | |
| *_test.go | |
| *_test.py | |
| *.test | |
| .pytest_cache/ | |
| coverage/ | |
| # Build artifacts | |
| dist/ | |
| build/ | |
| target/ | |
| *.tar.gz | |
| *.tgz | |
| # Backup files | |
| *.backup | |
| *.bak | |
| *.orig | |
| # Helm specific | |
| .helmignore | |
| # Package manager files | |
| node_modules/ | |
| package-lock.json | |
| yarn.lock | |
| requirements.txt | |
| go.mod | |
| go.sum | |
| Dockerfile* | |
| docker-compose*.yml | |
| # Scripts that shouldn't be packaged | |
| scripts/ | |
| .scripts/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment