Jan Klattenhoff 43db82da8f
All checks were successful
CI / eslint (pull_request) Successful in 23s
CI / prettier (pull_request) Successful in 20s
CI / test-build (pull_request) Successful in 39s
ci: add eslint job to CI workflow
2025-02-13 11:00:53 +01:00
2024-09-11 10:40:00 +02:00
2025-02-13 10:58:29 +01:00

How to: Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

feat: add hat wobble
^--^  ^------------^
|     |
|     +-> Summary in present tense.
|
+-------> Type: chore, docs, feat, fix, refactor, style, or test.

More Examples:

  • feat: (new feature for the user, not a new feature for build script)
  • fix: (bug fix for the user, not a fix to a build script)
  • docs: (changes to the documentation)
  • style: (formatting, missing semi colons, etc; no production code change)
  • refactor: (refactoring production code, eg. renaming a variable)
  • test: (adding missing tests, refactoring tests; no production code change)
  • chore: (updating grunt tasks etc; no production code change)

References:

Description
No description provided
Readme 3.7 MiB
v1.7.0 Latest
2025-02-19 11:57:30 +00:00
Languages
Java 35.7%
HTML 27.9%
TypeScript 23.9%
CSS 6.4%
JavaScript 5.5%
Other 0.6%