matrix-webhook/.pre-commit-config.yaml
pre-commit-ci[bot] 0e51f87cd9
[pre-commit.ci] pre-commit autoupdate
updates:
- [github.com/PyCQA/pydocstyle: 6.1.1 → 6.2.3](https://github.com/PyCQA/pydocstyle/compare/6.1.1...6.2.3)
2023-01-09 19:57:54 +00:00

37 lines
891 B
YAML

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-added-large-files
- id: check-ast
- id: check-merge-conflict
- id: check-symlinks
- id: check-toml
- id: check-yaml
- id: debug-statements
- id: detect-private-key
- id: end-of-file-fixer
- id: mixed-line-ending
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 22.12.0
hooks:
- id: black
language_version: python3
- repo: https://github.com/PyCQA/pydocstyle
rev: 6.2.3
hooks:
- id: pydocstyle
args:
- --ignore=D200,D203,D212
- repo: https://github.com/PyCQA/flake8
rev: 6.0.0
hooks:
- id: flake8
- repo: https://github.com/asottile/pyupgrade
rev: v3.3.1
hooks:
- id: pyupgrade
args:
- --py38-plus