2024-01-25 08:02:31 +00:00
|
|
|
fail_fast: true
|
|
|
|
|
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
|
|
rev: v4.0.1
|
|
|
|
hooks:
|
|
|
|
- id: check-yaml
|
|
|
|
- id: check-toml
|
|
|
|
- id: end-of-file-fixer
|
|
|
|
- id: trailing-whitespace
|
|
|
|
- id: check-added-large-files
|
|
|
|
- id: detect-private-key
|
|
|
|
- id: double-quote-string-fixer
|
|
|
|
- id: check-ast
|
|
|
|
- id: check-merge-conflict
|
|
|
|
|
|
|
|
- repo: local
|
|
|
|
hooks:
|
|
|
|
- id: lint-python
|
|
|
|
name: Lint Python
|
2024-01-25 08:05:28 +00:00
|
|
|
entry: ruff check
|
2024-01-25 08:02:31 +00:00
|
|
|
types: [python]
|
|
|
|
language: system
|
|
|
|
pass_filenames: false
|