| --- |
| |
| ci: |
| autoupdate_schedule: quarterly |
| skip: |
| - actionlint-docker |
|
|
| repos: |
| - repo: https://github.com/pre-commit/pre-commit-hooks |
| rev: 'v5.0.0' |
| hooks: |
| - id: check-merge-conflict |
| - repo: https://github.com/asottile/yesqa |
| rev: v1.5.0 |
| hooks: |
| - id: yesqa |
| additional_dependencies: |
| - wemake-python-styleguide |
| - repo: https://github.com/PyCQA/isort |
| rev: '5.13.2' |
| hooks: |
| - id: isort |
| - repo: https://github.com/psf/black |
| rev: '24.8.0' |
| hooks: |
| - id: black |
| language_version: python3 |
|
|
| - repo: https://github.com/python-jsonschema/check-jsonschema.git |
| rev: 0.29.3 |
| hooks: |
| - id: check-github-workflows |
| files: ^\.github/workflows/[^/]+$ |
| types: |
| - yaml |
| - id: check-jsonschema |
| alias: check-github-workflows-timeout |
| name: Check GitHub Workflows set timeout-minutes |
| args: |
| - --builtin-schema |
| - github-workflows-require-timeout |
| files: ^\.github/workflows/[^/]+$ |
| types: |
| - yaml |
| - id: check-readthedocs |
|
|
| - repo: https://github.com/pre-commit/pre-commit-hooks |
| rev: 'v5.0.0' |
| hooks: |
| - id: end-of-file-fixer |
| exclude: >- |
| ^docs/[^/]*\.svg$ |
| - id: requirements-txt-fixer |
| exclude: >- |
| ^requirements/constraints[.]txt$ |
| - id: trailing-whitespace |
| - id: file-contents-sorter |
| args: ['--ignore-case'] |
| files: | |
| CONTRIBUTORS.txt| |
| docs/spelling_wordlist.txt| |
| .gitignore| |
| .gitattributes |
| - id: check-case-conflict |
| - id: check-json |
| - id: check-xml |
| - id: check-executables-have-shebangs |
| - id: check-toml |
| - id: check-yaml |
| - id: debug-statements |
| - id: check-added-large-files |
| - id: check-symlinks |
| - id: fix-byte-order-marker |
| - id: fix-encoding-pragma |
| args: ['--remove'] |
| - id: detect-aws-credentials |
| args: ['--allow-missing-credentials'] |
| - id: detect-private-key |
| exclude: ^examples/ |
| - repo: https://github.com/asottile/pyupgrade |
| rev: 'v3.17.0' |
| hooks: |
| - id: pyupgrade |
| args: ['--py36-plus'] |
| - repo: https://github.com/PyCQA/flake8 |
| rev: '7.1.1' |
| hooks: |
| - id: flake8 |
| exclude: "^docs/" |
|
|
| - repo: https://github.com/codespell-project/codespell.git |
| rev: v2.3.0 |
| hooks: |
| - id: codespell |
|
|
| - repo: https://github.com/adrienverge/yamllint.git |
| rev: v1.35.1 |
| hooks: |
| - id: yamllint |
| args: |
| - --strict |
|
|
| - repo: https://github.com/MarcoGorelli/cython-lint.git |
| rev: v0.16.2 |
| hooks: |
| - id: cython-lint |
|
|
| - repo: https://github.com/Lucas-C/pre-commit-hooks-markup |
| rev: v1.0.1 |
| hooks: |
| - id: rst-linter |
| files: >- |
| ^[^/]+[.]rst$ |
| exclude: >- |
| ^CHANGES\.rst$ |
| |
| - repo: local |
| hooks: |
| - id: changelogs-rst |
| name: changelog filenames |
| language: fail |
| entry: >- |
| Changelog files must be named |
| ####.( |
| bugfix |
| | feature |
| | deprecation |
| | breaking |
| | doc |
| | packaging |
| | contrib |
| | misc |
| )(.#)?(.rst)? |
| exclude: >- |
| (?x) |
| ^ |
| CHANGES/( |
| \.gitignore |
| |\d+\.( |
| bugfix |
| |feature |
| |deprecation |
| |breaking |
| |doc |
| |packaging |
| |contrib |
| |misc |
| )(\.\d+)?(\.rst)? |
| |README\.rst |
| |\.TEMPLATE\.rst |
| ) |
| $ |
| files: ^CHANGES/ |
| - id: changelogs-user-role |
| name: Changelog files should use a non-broken :user:`name` role |
| language: pygrep |
| entry: :user:([^`]+`?|`[^`]+[\s,]) |
| pass_filenames: true |
| types: [file, rst] |
|
|
| - repo: https://github.com/pre-commit/mirrors-mypy.git |
| rev: v1.11.2 |
| hooks: |
| - id: mypy |
| alias: mypy-py312 |
| name: MyPy, for Python 3.12 |
| additional_dependencies: |
| - lxml |
| - pytest |
| - tomli |
| - types-setuptools |
| args: |
| - --install-types |
| - --non-interactive |
| - --python-version=3.12 |
| - --txt-report=.tox/.tmp/.mypy/python-3.12 |
| - --cobertura-xml-report=.tox/.tmp/.mypy/python-3.12 |
| - --html-report=.tox/.tmp/.mypy/python-3.12 |
| pass_filenames: false |
| - id: mypy |
| alias: mypy-py310 |
| name: MyPy, for Python 3.10 |
| additional_dependencies: |
| - lxml |
| - pytest |
| - tomli |
| - types-setuptools |
| args: |
| - --install-types |
| - --non-interactive |
| - --python-version=3.10 |
| - --txt-report=.tox/.tmp/.mypy/python-3.10 |
| - --cobertura-xml-report=.tox/.tmp/.mypy/python-3.10 |
| - --html-report=.tox/.tmp/.mypy/python-3.10 |
| pass_filenames: false |
| - id: mypy |
| alias: mypy-py38 |
| name: MyPy, for Python 3.8 |
| additional_dependencies: |
| - lxml |
| - pytest |
| - tomli |
| - types-setuptools |
| args: |
| - --install-types |
| - --non-interactive |
| - --python-version=3.8 |
| - --txt-report=.tox/.tmp/.mypy/python-3.8 |
| - --cobertura-xml-report=.tox/.tmp/.mypy/python-3.8 |
| - --html-report=.tox/.tmp/.mypy/python-3.8 |
| pass_filenames: false |
|
|
| - repo: https://github.com/rhysd/actionlint |
| rev: v1.7.3 |
| hooks: |
| - id: actionlint-docker |
| args: |
| - -ignore |
| - >- |
| ^type of expression at "float number value" must be number |
| but found type string$ |
| - -ignore |
| - 'SC2155:' |
| - -ignore |
| - 'SC2157:' |
| - -ignore |
| - 'SC2086:' |
| - -ignore |
| - 'SC1004:' |
|
|
| ... |
|
|