From: Donatas Abraitis Date: Fri, 3 Mar 2023 12:10:36 +0000 (+0200) Subject: tools: Do not force Sentence-case for commit messages X-Git-Tag: base_9.0~332^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=refs%2Fpull%2F12945%2Fhead;p=mirror%2Ffrr.git tools: Do not force Sentence-case for commit messages Signed-off-by: Donatas Abraitis --- diff --git a/.github/commitlint.config.js b/.github/commitlint.config.js index d23bd2d80b..2b420b6fbf 100644 --- a/.github/commitlint.config.js +++ b/.github/commitlint.config.js @@ -42,6 +42,5 @@ module.exports = { ], 'subject-empty': [2, 'never'], 'subject-full-stop': [2, 'never', '.'], - 'subject-case': [2, 'always', 'sentence-case'], }, }; diff --git a/doc/developer/workflow.rst b/doc/developer/workflow.rst index 320824ec1d..835c1d1d99 100644 --- a/doc/developer/workflow.rst +++ b/doc/developer/workflow.rst @@ -365,7 +365,6 @@ There is a built-in commit linter. Basic rules: `Check `_ all the supported subsystems. -- Commit messages must start with a capital letter - Commit messages must not end with a period ``.`` Why was my pull request closed?