|
continuous-integration/drone/push Build is failing
Details
- Introduced .editorconfig for consistent coding styles. - Added .gitattributes to manage line endings and text attributes. - Created README.md for Git hooks usage and configuration. - Implemented pre-commit hook to enforce executable permissions and LF line endings for shell scripts. - Updated .gitignore to include additional build artifacts and directories. - Enhanced AGENTS.md and Definition of Done documentation with testing standards. - Modified reconciliation scripts to include new configuration files and templates. |
||
|---|---|---|
| .. | ||
| README.md | ||
| pre-commit | ||
README.md
Git Hooks
This repository standard uses a project-local hooks directory:
.githooks/pre-commit
Activate it once per repository:
git config core.hooksPath .githooks
The pre-commit hook validates for staged .sh files:
- executable bit in Git index (
100755) - LF line endings (no CRLF)