mirror of
https://github.com/HKUDS/LightRAG.git
synced 2025-12-27 14:52:34 +00:00
568 B
568 B
Handy Tips for Developers Who Want to Contribute to the Project
Pre-commit Hooks
Please ensure you have run pre-commit hooks before committing your changes.
Guides
-
Installing Pre-commit Hooks:
- Install pre-commit using pip:
pip install pre-commit - Initialize pre-commit in your repository:
pre-commit install - Run pre-commit hooks:
pre-commit run --all-files
- Install pre-commit using pip:
-
Pre-commit Hooks Configuration:
- Create a
.pre-commit-config.yamlfile in the root of your repository. - Add your hooks to the
.pre-commit-config.yamlfile.
- Create a