File size: 1,130 Bytes
62896ef
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
## Contribution guidelines

### Branching
- Base branch: `main`
- Work on short-lived branches using prefixes:
  - `feat/` for features
  - `fix/` for bug fixes
  - `docs/` for documentation
- Example: `feat/data-pipeline`, `docs/board`

### Workflow
1) Create an issue and assign yourself
2) Create a branch from `main`
3) Push commits to your branch
4) Open a Pull Request (PR)
5) Request review from at least one teammate
6) Merge after approval

### Commit messages
Use short, action-oriented messages:
- `add data filters for reddit jokes`
- `update 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/` and `data/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)