updates: - [github.com/asottile/pyupgrade: v2.38.2 → v3.0.0](https://github.com/asottile/pyupgrade/compare/v2.38.2...v3.0.0) - [github.com/psf/black: 22.8.0 → 22.10.0](https://github.com/psf/black/compare/22.8.0...22.10.0) - [github.com/pre-commit/mirrors-mypy: v0.981 → v0.982](https://github.com/pre-commit/mirrors-mypy/compare/v0.981...v0.982)
125 lines
2.9 KiB
YAML
125 lines
2.9 KiB
YAML
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.3.0
|
|
hooks:
|
|
- id: check-case-conflict
|
|
- id: check-merge-conflict
|
|
- id: check-yaml
|
|
- id: check-toml
|
|
- id: debug-statements
|
|
- id: end-of-file-fixer
|
|
exclude: (cibuildwheel/resources/pinned_docker_images.cfg)|(.svg$)
|
|
- id: mixed-line-ending
|
|
- id: trailing-whitespace
|
|
|
|
- repo: https://github.com/asottile/pyupgrade
|
|
rev: v3.0.0
|
|
hooks:
|
|
- id: pyupgrade
|
|
args: ["--py37-plus"]
|
|
exclude: ^cibuildwheel/resources/.*py$
|
|
|
|
# Autoremoves unused imports
|
|
- repo: https://github.com/hadialqattan/pycln
|
|
rev: v2.1.1
|
|
hooks:
|
|
- id: pycln
|
|
args: [--all]
|
|
stages: [manual]
|
|
|
|
- repo: https://github.com/PyCQA/isort
|
|
rev: 5.10.1
|
|
hooks:
|
|
- id: isort
|
|
args: ["-a", "from __future__ import annotations"]
|
|
exclude: ^cibuildwheel/resources/.*py$
|
|
|
|
- repo: https://github.com/psf/black
|
|
rev: 22.10.0
|
|
hooks:
|
|
- id: black
|
|
|
|
- repo: https://github.com/asottile/setup-cfg-fmt
|
|
rev: v2.0.0
|
|
hooks:
|
|
- id: setup-cfg-fmt
|
|
args: [--include-version-classifiers, --max-py-version=3.10]
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: v0.982
|
|
hooks:
|
|
- id: mypy
|
|
name: mypy 3.7 on cibuildwheel/
|
|
exclude: ^cibuildwheel/resources/.*py$
|
|
args: ["--python-version=3.7"]
|
|
additional_dependencies: &mypy-dependencies
|
|
- nox
|
|
- packaging>=21.0
|
|
- pygithub
|
|
- rich
|
|
- tomli
|
|
- tomli_w
|
|
- types-certifi
|
|
- types-click
|
|
- types-dataclasses
|
|
- types-jinja2
|
|
- types-pyyaml
|
|
- types-requests
|
|
- bracex
|
|
- dataclasses
|
|
- id: mypy
|
|
name: mypy 3.10
|
|
args: ["--python-version=3.10"]
|
|
additional_dependencies: *mypy-dependencies
|
|
|
|
- repo: https://github.com/asottile/yesqa
|
|
rev: v1.4.0
|
|
hooks:
|
|
- id: yesqa
|
|
additional_dependencies: &flake8-dependencies
|
|
- flake8-bugbear
|
|
|
|
- repo: https://github.com/PyCQA/flake8
|
|
rev: 5.0.4
|
|
hooks:
|
|
- id: flake8
|
|
exclude: ^cibuildwheel/resources/
|
|
additional_dependencies: *flake8-dependencies
|
|
|
|
- repo: https://github.com/pre-commit/pygrep-hooks
|
|
rev: v1.9.0
|
|
hooks:
|
|
- id: python-check-blanket-noqa
|
|
stages: [manual]
|
|
- id: python-no-log-warn
|
|
- id: python-no-eval
|
|
- id: python-use-type-annotations
|
|
|
|
- repo: https://github.com/shellcheck-py/shellcheck-py
|
|
rev: v0.8.0.4
|
|
hooks:
|
|
- id: shellcheck
|
|
|
|
- repo: local
|
|
hooks:
|
|
- id: disallow-caps
|
|
name: Disallow improper capitalization
|
|
language: pygrep
|
|
entry: PyBind|Numpy|Cmake|Github|PyTest
|
|
types:
|
|
- markdown
|
|
exclude: ^docs/working-examples\.md$ # Autogenerated
|
|
- id: update-readme-changelog
|
|
name: Update README changelog
|
|
language: python
|
|
entry: bin/update_readme_changelog.py
|
|
files: ^docs/changelog.md$
|
|
|
|
- repo: https://github.com/codespell-project/codespell
|
|
rev: v2.2.1
|
|
hooks:
|
|
- id: codespell
|
|
args: ["-L", "sur"]
|
|
exclude: ^docs/working-examples\.md$ # Autogenerated
|