From e2d47f1bd19dda8f5966a7499d186d037ffb5328 Mon Sep 17 00:00:00 2001 From: Matthias Osswald Date: Mon, 3 Nov 2025 14:16:39 +0100 Subject: [PATCH] docs: Fix commit message example formatting --- docs/Guidelines.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/Guidelines.md b/docs/Guidelines.md index f71dd65497..c798d06290 100644 --- a/docs/Guidelines.md +++ b/docs/Guidelines.md @@ -53,13 +53,19 @@ The following rules are enforced by commitlint: **Features and fixes:** ``` feat(cli): Add "versions" command +``` +``` fix(fs): Correctly handle paths containing non-ASCII characters on Windows +``` +``` perf(builder): Improve bundle generation speed by 25% ``` **Dependencies:** ``` deps(cli): Update @ui5/logger to v4.0.0 +``` +``` build(deps-dev): Update eslint to v9.0.0 ``` @@ -73,7 +79,11 @@ BREAKING CHANGE: The "init" command has been removed. Use "create" instead. **Workspace-wide changes (no scope):** ``` ci: Update GitHub Actions to use Node.js 20 +``` +``` docs: Update contribution guidelines +``` +``` build: Configure new linting rules ``` @@ -92,7 +102,11 @@ When making changes that affect multiple packages, create individual commits for For a feature spanning multiple packages: ``` feat(cli): Add support for new build option +``` +``` feat(builder): Implement new build option processing +``` +``` feat(fs): Add helper methods for new build option ```