logo

badwolf

minimalist and privacy-oriented web browser based on WebKitGTK git clone https://anongit.hacktivis.me/git/badwolf.git/

CONTRIBUTING.md (1394B)


  1. ## Contributing
  2. Last-Modified: 2026-03-12
  3. ### Policy
  4. 1. You confirm having full rights to submit the entirety of the work you're contributing under the license indicated for each file.
  5. 2. If any third-party work has been included, even partially, credit is required as well as following the license requirements.
  6. Such as via it's copyright notice when applicable or otherwise via the `Co-Authored-By` trailer.
  7. 3. Operators and users of (semi-)automated software are held accountable. It must not be low-quality, spammy, or breach involved parties consent.
  8. As such asking first is strongly recommended.
  9. Note: Machine Learning software such as Diffusion Models and LLMs fundamentally break this policy, as such use of them is effectively banned.
  10. ### Commit signature
  11. Each commit must include the following trailers:
  12. * `Signed-off-by` with a recognisable and public name and email
  13. * `X-Contrib-Policy: CONTRIBUTING.md 2026-03-12`
  14. Which can be automated with adding a script like this one to `.git/hooks/commit-msg`:
  15. ```
  16. #!/bin/sh
  17. NAME=$(git config user.name)
  18. EMAIL=$(git config user.email)
  19. git interpret-trailers --in-place --if-exists doNothing \
  20. --trailer "Signed-off-by: $NAME <$EMAIL>" \
  21. --trailer "X-Contrib-Policy: CONTRIBUTING.md 2026-03-12" \
  22. "$1"
  23. ```
  24. --
  25. ```
  26. Copyright 2017 Haelwenn (lanodan) Monnier <contact@hacktivis.me>
  27. SPDX-License-Identifier: MPL-2.0
  28. ```