mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-21 22:56:38 +01:00
64 lines
1.7 KiB
YAML
64 lines
1.7 KiB
YAML
# Make sure that
|
|
# * the revs specified here match requirements-dev.txt
|
|
# * the additional_dependencies here match requirements.txt
|
|
repos:
|
|
- repo: https://github.com/psf/black
|
|
rev: 20.8b1
|
|
hooks:
|
|
- id: black
|
|
args:
|
|
- --diff
|
|
- --check
|
|
- repo: https://gitlab.com/pycqa/flake8
|
|
rev: 3.9.2
|
|
hooks:
|
|
- id: flake8
|
|
- repo: https://github.com/PyCQA/pylint
|
|
rev: v2.10.2
|
|
hooks:
|
|
- id: pylint
|
|
files: ^(telegram|examples)/.*\.py$
|
|
args:
|
|
- --rcfile=setup.cfg
|
|
additional_dependencies:
|
|
- certifi
|
|
- tornado>=6.1
|
|
- APScheduler==3.6.3
|
|
- cachetools==4.2.2
|
|
- . # this basically does `pip install -e .`
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: v0.910
|
|
hooks:
|
|
- id: mypy
|
|
name: mypy-ptb
|
|
files: ^telegram/.*\.py$
|
|
additional_dependencies:
|
|
- types-ujson
|
|
- types-pytz
|
|
- types-cryptography
|
|
- types-certifi
|
|
- types-cachetools
|
|
- certifi
|
|
- tornado>=6.1
|
|
- APScheduler==3.6.3
|
|
- cachetools==4.2.2
|
|
- . # this basically does `pip install -e .`
|
|
- id: mypy
|
|
name: mypy-examples
|
|
files: ^examples/.*\.py$
|
|
args:
|
|
- --no-strict-optional
|
|
- --follow-imports=silent
|
|
additional_dependencies:
|
|
- certifi
|
|
- tornado>=6.1
|
|
- APScheduler==3.6.3
|
|
- cachetools==4.2.2
|
|
- . # this basically does `pip install -e .`
|
|
- repo: https://github.com/asottile/pyupgrade
|
|
rev: v2.24.0
|
|
hooks:
|
|
- id: pyupgrade
|
|
files: ^(telegram|examples|tests)/.*\.py$
|
|
args:
|
|
- --py37-plus
|