-
Notifications
You must be signed in to change notification settings - Fork 0
/
.commitlintrc.yml
42 lines (38 loc) · 1.31 KB
/
.commitlintrc.yml
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
42
extends:
- "@commitlint/config-conventional"
rules:
type-enum:
- 2
- always
- - build # Changes that affect the build system or external dependencies
- ci # Changes to our CI configuration files and scripts
- docs # Documentation only changes
- feat # A new feature
- fix # A bug fix
- perf # A code change that improves performance
- refactor # A code change that neither fixes a bug nor adds a feature
- style # Changes that do not affect the meaning of the code
- test # Adding missing tests or correcting existing tests
- chore # Other changes that don't modify src or test files
- data # Changes to data processing or datasets
- model # Changes to model architecture or parameters
scope-enum:
- 2
- always
- - api # NBA API and data integration
- data # Data collection and preprocessing
- model # ML models and Bayesian hierarchical models
- sim # Simulations and trading algorithms
- ui # User interface and visualization
- core # Core functionality and utilities
- ci # CI/CD and dependencies
- docs # Documentation and examples
- all # Changes affecting multiple components
header-max-length:
- 2
- always
- 72
body-max-line-length:
- 2
- always
- 100