Skip to content

Commit 3231897

Browse files
committed
docs: add comprehensive CONTRIBUTING.md with pre-commit setup
- Add detailed contribution guidelines with development workflow - Include pre-commit hooks setup and usage instructions - Document conventional commit format requirements - Add testing guidelines and code style standards - Enhance pre-commit config with additional quality checks - Update README links to point to local CONTRIBUTING.md
1 parent da30ee5 commit 3231897

File tree

3 files changed

+415
-3
lines changed

3 files changed

+415
-3
lines changed

.pre-commit-config.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v4.4.0
4+
hooks:
5+
- id: trailing-whitespace
6+
- id: end-of-file-fixer
7+
- id: check-yaml
8+
- id: check-json
9+
- id: check-added-large-files
10+
- id: check-merge-conflict
211
- repo: https://github.com/psf/black
312
rev: 23.3.0
413
hooks:
5-
- id: black
14+
- id: black
15+
language_version: python3.11

0 commit comments

Comments
 (0)