Skip to content

Commit

Permalink
remove unused commit hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
janosh committed Dec 12, 2024
1 parent 8553de0 commit c12d389
Showing 1 changed file with 9 additions and 22 deletions.
31 changes: 9 additions & 22 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ exclude: ^(docs|tests/files|tasks.py)

ci:
autoupdate_schedule: monthly
skip: [ mypy, pyright ]
skip: [mypy, pyright]
autofix_commit_msg: pre-commit auto-fixes
autoupdate_commit_msg: pre-commit autoupdate

repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.7.2
rev: v0.8.3
hooks:
- id: ruff
args: [ --fix, --unsafe-fixes ]
args: [--fix, --unsafe-fixes]
- id: ruff-format

- repo: https://github.com/pre-commit/pre-commit-hooks
Expand All @@ -30,40 +30,27 @@ repos:
rev: v2.3.0
hooks:
- id: codespell
stages: [ commit-msg ]
exclude_types: [ html ]
additional_dependencies: [ tomli ] # needed to read pyproject.toml below py3.11

- repo: https://github.com/MarcoGorelli/cython-lint
rev: v0.16.2
hooks:
- id: cython-lint
args: [ --no-pycodestyle ]
- id: double-quote-cython-strings
stages: [commit-msg]
exclude_types: [html]
additional_dependencies: [tomli] # needed to read pyproject.toml below py3.11

- repo: https://github.com/adamchainz/blacken-docs
rev: 1.19.1
hooks:
- id: blacken-docs

- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.42.0
rev: v0.43.0
hooks:
- id: markdownlint
# MD013: line too long
# MD024: Multiple headings with the same content
# MD033: no inline HTML
# MD041: first line in a file should be a top-level heading
# MD025: single title
args: [ --disable, MD013, MD024, MD025, MD033, MD041, "--" ]

- repo: https://github.com/kynan/nbstripout
rev: 0.8.0
hooks:
- id: nbstripout
args: [ --drop-empty-cells, --keep-output ]
args: [--disable, MD013, MD024, MD025, MD033, MD041, "--"]

- repo: https://github.com/RobertCraigie/pyright-python
rev: v1.1.387
rev: v1.1.390
hooks:
- id: pyright

0 comments on commit c12d389

Please sign in to comment.