refactor(lint): remove help section from commitlint config
Some checks failed
Code QL / code-ql (push) Has been cancelled
Azure Static Web Apps CI/CD / Build and Deploy (push) Has been cancelled

This commit is contained in:
Artin 2024-09-22 11:39:04 +03:30 committed by Jan De Dobbeleer
parent 3fb898da1a
commit 227c68d316

View file

@ -20,61 +20,3 @@ rules:
- style
- test
- theme
help: |
**Possible types**:
`chore`: Changes that involve maintenance or updates to build tools and dependencies.
**Usage**: Use for routine tasks or updates that dont modify source or test files.
**Example**: `chore: update dependency versions`
`ci`: Updates to CI/CD configuration files and scripts.
**Usage**: Use for modifications that affect continuous integration and delivery.
**Example**: `ci: add deployment script`
`docs`: Changes to documentation files.
**Usage**: Use for updates or corrections to documentation.
**Example**: `docs: update API documentation`
`feat`: New features or enhancements.
**Usage**: Use for introducing new functionalities or enhancements.
**Example**: `feat: add user authentication`
`fix`: Bug fixes or corrections.
**Usage**: Use for resolving bugs or issues.
**Example**: `fix: correct typo in README`
`perf`: Performance improvements.
**Usage**: Use for changes that enhance performance.
**Example**: `perf: optimize image loading`
`refactor`: Code improvements that dont affect functionality.
**Usage**: Use for restructuring or improving code without changing its behavior.
**Example**: `refactor: simplify component logic`
`revert`: Reverts previous changes or commits.
**Usage**: Use for undoing changes from earlier commits.
**Example**: `revert: undo changes from commit abc123`
`style`: Code style and formatting changes.
**Usage**: Use for changes that affect code style or formatting but not functionality.
**Example**: `style: format code with prettier`
`test`: Additions or corrections to tests.
**Usage**: Use for new tests or fixes to existing tests.
**Example**: `test: add unit tests for user service`
`theme`: Work on a theme.
**Usage**: Use for theme-related changes.
**Example**: `theme(jandedobbeleer): update git branch icon`