mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 15:17:00 +01:00
02cd7b642f
* Fix Black in pre-commit * Fix black some more
25 lines
562 B
YAML
25 lines
562 B
YAML
repos:
|
|
- repo: https://github.com/psf/black
|
|
rev: 20.8b1
|
|
hooks:
|
|
- id: black
|
|
args:
|
|
- --diff
|
|
- --check
|
|
- repo: https://gitlab.com/pycqa/flake8
|
|
rev: 3.8.1
|
|
hooks:
|
|
- id: flake8
|
|
- repo: git://github.com/pre-commit/mirrors-pylint
|
|
rev: v2.5.3
|
|
hooks:
|
|
- id: pylint
|
|
files: ^telegram/.*\.py$
|
|
args:
|
|
- --errors-only
|
|
- --disable=import-error
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: 'v0.770'
|
|
hooks:
|
|
- id: mypy
|
|
files: ^telegram/.*\.py$
|