Files
Pheobe/.pre-commit-config.yaml
Dan adca64bfc8 feat: Added GPT Model Code
Fix: Changed .pre-commit-confit.yaml to stop conflicts
docs: README.md changed due to the pre-commits
2024-05-14 21:15:36 -04:00

20 lines
434 B
YAML

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- repo: https://github.com/psf/black
rev: 22.3.0
hooks:
- id: black
args: [--line-length=79]
- repo: https://github.com/pycqa/flake8
rev: 4.0.1
hooks:
- id: flake8
args: [--max-line-length=79, --ignore=E203]