From 2547fc6cd3533cd9b2342d65c49b955fe036293f Mon Sep 17 00:00:00 2001 From: Paul Makles Date: Sun, 22 Mar 2026 14:02:58 +0000 Subject: [PATCH] docs: add LLM policy to contrib.md (#683) --- docs/docs/developing/contrib.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/docs/developing/contrib.md b/docs/docs/developing/contrib.md index 39520b51..565f92ea 100644 --- a/docs/docs/developing/contrib.md +++ b/docs/docs/developing/contrib.md @@ -12,14 +12,18 @@ This is the contribution guide for developers wanting to help out with Stoat. - Sign-off your commits ([Git flag](https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---signoff)), [read here about DCO obligations](https://developercertificate.org/). - Sign commits where possible, [learn more about that here](https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits). -- Prefer to use [Conventional Commit style](https://www.conventionalcommits.org/en/v1.0.0-beta.2/). +- Prefer using [Conventional Commit style](https://www.conventionalcommits.org/en/v1.0.0-beta.2/). - If present, e.g. `prettier`, `cargo fmt`, use the formatter. - Try to keep each PR bound to a single feature or change, multiple bug fixes may be fine in some cases. This is to avoid your PR getting stuck due to parts of it having conflicts or other issues. ### Merging Pull Requests -All PR titles must use use [Conventional Commit style](https://www.conventionalcommits.org/en/v1.0.0-beta.2/) and will be squash merged! +All PR titles must use use [Conventional Commit style](https://www.conventionalcommits.org/en/v1.0.0-beta.2/) and will be squash merged. + +### Use of generative AI + +Please do not open PRs generated with LLMs. ## What can I help with?