rich/.pre-commit-config.yaml

44 lines
1.2 KiB
YAML
Raw Normal View History

# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
2022-01-06 14:30:08 +00:00
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
2022-01-06 14:30:08 +00:00
hooks:
- id: check-ast
- id: check-builtin-literals
- id: check-case-conflict
- id: check-docstring-first
- id: check-merge-conflict
- id: check-json
- id: check-toml
- id: check-yaml
- id: end-of-file-fixer
- id: mixed-line-ending
- id: trailing-whitespace
- id: check-vcs-permalinks
- id: check-shebang-scripts-are-executable
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.9.0
hooks:
- id: python-check-mock-methods
- id: python-no-log-warn
- id: python-use-type-annotations
- id: rst-directive-colons
- id: rst-inline-touching-normal
- repo: https://github.com/hadialqattan/pycln
2022-03-12 13:22:30 +00:00
rev: v1.2.5
hooks:
- id: pycln
args: [--all]
- repo: https://github.com/psf/black
2022-02-14 10:03:44 +00:00
rev: 22.1.0
2022-01-06 14:30:08 +00:00
hooks:
- id: black
2022-03-10 17:08:26 +00:00
exclude: ^benchmarks/
- repo: https://github.com/PyCQA/isort
rev: 5.10.1
hooks:
- id: isort
2022-03-10 17:08:26 +00:00
exclude: ^benchmarks/
args: ["--profile", "black"]