mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-22 19:23:34 +00:00
327efb6c65
* Update pre-commit hooks * Fix implicit optionals
46 lines
923 B
YAML
46 lines
923 B
YAML
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.3.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: check-docstring-first
|
|
- id: check-yaml
|
|
- id: debug-statements
|
|
- id: check-ast
|
|
|
|
- repo: https://github.com/asottile/pyupgrade
|
|
rev: v3.2.2
|
|
hooks:
|
|
- id: pyupgrade
|
|
args: ['--py37-plus']
|
|
|
|
- repo: https://github.com/python/black
|
|
rev: 22.10.0
|
|
hooks:
|
|
- id: black
|
|
|
|
- repo: https://github.com/pycqa/flake8
|
|
rev: 5.0.4
|
|
hooks:
|
|
- id: flake8
|
|
additional_dependencies: [flake8-docstrings]
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-isort
|
|
rev: v5.10.1
|
|
hooks:
|
|
- id: isort
|
|
additional_dependencies: [toml]
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: v0.991
|
|
hooks:
|
|
- id: mypy
|
|
additional_dependencies: [types-click]
|
|
|
|
- repo: https://github.com/PyCQA/doc8
|
|
rev: 'v1.0.0'
|
|
hooks:
|
|
- id: doc8
|
|
additional_dependencies: [tomli]
|