Contribution guidelines
Branching
- Base branch:
main - Work on short-lived branches using prefixes:
feat/for featuresfix/for bug fixesdocs/for documentation
- Example:
feat/data-pipeline,docs/board
Workflow
- Create an issue and assign yourself
- Create a branch from
main - Push commits to your branch
- Open a Pull Request (PR)
- Request review from at least one teammate
- Merge after approval
Commit messages
Use short, action-oriented messages:
add data filters for reddit jokesupdate README with pipeline steps
Code style
- Keep functions small and readable
- Use explicit variable names
- Add comments only when needed to explain non-obvious logic
Data files
- Do not commit large raw datasets
- Keep
data/raw/anddata/processed/ignored by git
Pre-commit (anti gros fichiers)
This repo ships a local hook to block large files in commits.
Enable it once:
git config core.hooksPath .githooks
Adjust the size limit (MB) if needed:
MAX_FILE_SIZE_MB=100 git commit -m "..."(default 100 MB)