Skip to content

Commit

Permalink
Merge branch 'main' into rm-deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeitsperre committed Sep 15, 2023
2 parents a51a987 + 3ec9c68 commit fe1e1a4
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repos:
rev: v3.10.1
hooks:
- id: pyupgrade
args: ['--py39-plus']
args: [ '--py39-plus' ]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
Expand All @@ -17,14 +17,15 @@ repos:
- id: check-json
- id: pretty-format-json
args: [ '--autofix', '--no-ensure-ascii', '--no-sort-keys' ]
exclude: .ipynb
- id: check-yaml
args: [ '--allow-multiple-documents' ]
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.10.0
hooks:
- id: rst-inline-touching-normal
- repo: https://github.com/psf/black
rev: 23.7.0
rev: 23.9.1
hooks:
- id: black
exclude: ^docs/
Expand All @@ -38,23 +39,23 @@ repos:
rev: 5.12.0
hooks:
- id: isort
args: ['--profile=black', '--filter-files', "--add_imports='from __future__ import annotations'"]
args: [ '--profile=black', '--filter-files', "--add_imports='from __future__ import annotations'" ]
exclude: ^docs/
- repo: https://github.com/pycqa/pydocstyle
rev: 6.3.0
hooks:
- id: pydocstyle
args: ['--convention=numpy', '--match="(?!test_).*\.py"']
args: [ '--convention=numpy', '--match="(?!test_).*\.py"' ]
- repo: https://github.com/keewis/blackdoc
rev: v0.3.8
hooks:
- id: blackdoc
additional_dependencies: [ 'black==23.3.0' ]
additional_dependencies: [ 'black==23.9.1' ]
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.32.0
hooks:
- id: yamllint
args: ['--config-file', '.yamllint.yaml']
args: [ '--config-file', '.yamllint.yaml' ]
# Git version too old on server
# - repo: https://github.com/mgedmin/check-manifest
# rev: "0.49"
Expand Down

0 comments on commit fe1e1a4

Please sign in to comment.