ML6-Gemini-Demo / .pre-commit-config.yaml
GLorr's picture
Upload folder using huggingface_hub
6c09f76 verified
raw
history blame contribute delete
586 Bytes
repos:
- repo: https://github.com/PyCQA/bandit
rev: 1.7.4
hooks:
- id: bandit
name: bandit
types: [python]
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.4.8
hooks:
# Run the linter.
- id: ruff
# Run the formatter.
- id: ruff-format
- repo: https://github.com/psf/black
rev: 23.1.0
hooks:
- id: black
name: black
- repo: https://github.com/pre-commit/mirrors-isort
rev: v5.10.1
hooks:
- id: isort
args: ["--profile", "black"]