mirror of https://github.com/theacodes/nox.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
2.4 KiB
101 lines
2.4 KiB
ci: |
|
autoupdate_commit_msg: "chore: update pre-commit hooks" |
|
autofix_commit_msg: "style: pre-commit fixes" |
|
|
|
repos: |
|
- repo: https://github.com/psf/black |
|
rev: "22.3.0" |
|
hooks: |
|
- id: black |
|
args: |
|
- "--preview" |
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks |
|
rev: v4.2.0 |
|
hooks: |
|
- id: check-added-large-files |
|
- id: check-case-conflict |
|
- id: check-merge-conflict |
|
- id: check-symlinks |
|
- id: check-yaml |
|
- id: debug-statements |
|
- id: end-of-file-fixer |
|
- id: mixed-line-ending |
|
- id: requirements-txt-fixer |
|
- id: trailing-whitespace |
|
|
|
- repo: https://github.com/PyCQA/isort |
|
rev: 5.10.1 |
|
hooks: |
|
- id: isort |
|
args: ["-a", "from __future__ import annotations"] |
|
exclude: ^.github/action_helper.py$ |
|
|
|
- repo: https://github.com/asottile/pyupgrade |
|
rev: v2.32.0 |
|
hooks: |
|
- id: pyupgrade |
|
args: [--py37-plus] |
|
exclude: ^.github/action_helper.py$ |
|
|
|
- repo: https://github.com/tox-dev/pyproject-fmt |
|
rev: "0.3.3" |
|
hooks: |
|
- id: pyproject-fmt |
|
|
|
- repo: https://github.com/hadialqattan/pycln |
|
rev: v1.3.2 |
|
hooks: |
|
- id: pycln |
|
args: [--all] |
|
stages: [manual] |
|
|
|
- repo: https://github.com/asottile/yesqa |
|
rev: v1.3.0 |
|
hooks: |
|
- id: yesqa |
|
additional_dependencies: &flake8-dependencies |
|
- flake8-bugbear |
|
|
|
- repo: https://github.com/pycqa/flake8 |
|
rev: 4.0.1 |
|
hooks: |
|
- id: flake8 |
|
exclude: docs/conf.py |
|
additional_dependencies: *flake8-dependencies |
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy |
|
rev: v0.950 |
|
hooks: |
|
- id: mypy |
|
files: ^nox/ |
|
args: [] |
|
additional_dependencies: |
|
- jinja2 |
|
- packaging |
|
- importlib_metadata |
|
|
|
- repo: https://github.com/codespell-project/codespell |
|
rev: v2.1.0 |
|
hooks: |
|
- id: codespell |
|
|
|
- repo: https://github.com/pre-commit/pygrep-hooks |
|
rev: v1.9.0 |
|
hooks: |
|
- id: python-check-blanket-noqa |
|
- id: python-check-blanket-type-ignore |
|
- id: python-no-log-warn |
|
exclude: ^tests/test_sessions.py$ |
|
- id: python-no-eval |
|
exclude: ^nox/manifest.py$ |
|
- id: python-use-type-annotations |
|
- id: rst-backticks |
|
- id: rst-directive-colons |
|
- id: rst-inline-touching-normal |
|
|
|
- repo: https://github.com/mgedmin/check-manifest |
|
rev: "0.48" |
|
hooks: |
|
- id: check-manifest |
|
stages: [manual]
|
|
|