|
|
|
|
|
exclude: benchmarks/ |
|
repos: |
|
- repo: https://github.com/pre-commit/pre-commit-hooks |
|
rev: v4.4.0 |
|
hooks: |
|
- id: check-ast |
|
- id: check-builtin-literals |
|
- id: check-case-conflict |
|
- id: check-merge-conflict |
|
- id: check-json |
|
- id: check-toml |
|
- id: check-yaml |
|
- id: end-of-file-fixer |
|
- id: mixed-line-ending |
|
- id: check-vcs-permalinks |
|
- id: check-shebang-scripts-are-executable |
|
- id: trailing-whitespace |
|
- repo: https://github.com/pre-commit/pygrep-hooks |
|
rev: v1.10.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 |
|
rev: v2.2.2 |
|
hooks: |
|
- id: pycln |
|
args: [--all] |
|
- repo: https://github.com/psf/black-pre-commit-mirror |
|
rev: 23.11.0 |
|
hooks: |
|
- id: black |
|
exclude: ^benchmarks/ |
|
- repo: https://github.com/PyCQA/isort |
|
rev: 5.12.0 |
|
hooks: |
|
- id: isort |
|
name: isort (python) |
|
language_version: "3.11" |
|
args: ["--profile", "black"] |
|
|