mdpreview/CONTRIBUTING.md

583 B

Contributing Guide

Commit message format

We use this standard

<type>(<scope>): <subject>
<BLANK LINE>
[optional body]
<BLANK LINE>
[optional footer]

Setting Up Pre-Commit Hooks

We use pre-commit to automatically enforce code quality checks before commits:

python3 -m venv venv
. ./venv/bin/activate
pip install pre-commit
pre-commit install
pre-commit install --hook-type commit-msg

Hooks will now run automatically on every commit.