Files
mongo-genai-showcase/.pre-commit-config.yaml
Steven Silvester 775656b5f9 add newline
2024-12-11 15:18:47 -05:00

23 lines
567 B
YAML

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
- id: check-toml
- id: check-yaml
- id: debug-statements
- id: end-of-file-fixer
- id: forbid-new-submodules
- id: trailing-whitespace
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.8.2
hooks:
- id: ruff-format
exclude: notebooks/techniques/evaluating_information_retrival_techniques_mongondb_langchain.ipynb
- id: ruff
args: ["--fix", "--show-fixes"]