Skip to content

Commit

Permalink
šŸ‘ TEMPLATE DEVIATIONS: synced local '.pre-commit-config.yaml' with reā€¦
Browse files Browse the repository at this point in the history
ā€¦mote 'templates/.pre-commit-config.yaml'
  • Loading branch information
scitools-ci[bot] committed May 1, 2024
1 parent f57a7f1 commit f3603c6
Showing 1 changed file with 33 additions and 11 deletions.
44 changes: 33 additions & 11 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks

files: |
(?x)(
noxfile\.py|
setup\.py|
docs\/.+\.py|
benchmarks\/.+\.py|
)
minimum_pre_commit_version: 1.21.0

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v4.5.0
hooks:
# Prevent giant files from being committed.
- id: check-added-large-files
Expand All @@ -18,29 +27,42 @@ repos:
# Don't commit to main branch.
- id: no-commit-to-branch

- repo: https://github.com/psf/black
rev: 24.4.0
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.3.4"
hooks:
- id: black
- id: ruff
types: [file, python]
args: [--fix, --show-fixes]
- id: ruff-format
types: [file, python]
args: [--config=./pyproject.toml]

- repo: https://github.com/codespell-project/codespell
rev: "v2.2.6"
hooks:
- id: codespell
types_or: [asciidoc, python, markdown, rst]
additional_dependencies: [tomli]

- repo: https://github.com/PyCQA/flake8
rev: 7.0.0
hooks:
- id: flake8
types: [file, python]
args: [--config=./setup.cfg]

- repo: https://github.com/PyCQA/isort
rev: 5.13.2
- repo: https://github.com/asottile/blacken-docs
rev: 1.16.0
hooks:
- id: isort
types: [file, python]
args: [--filter-files]
- id: blacken-docs
types: [file, rst]

- repo: https://github.com/aio-libs/sort-all
rev: v1.2.0
hooks:
- id: sort-all
types: [file, python]

- repo: https://github.com/numpy/numpydoc
rev: v1.7.0
hooks:
- id: numpydoc-validation
types: [file, python]

0 comments on commit f3603c6

Please sign in to comment.