core/.pre-commit-config.yaml

32 lines
981 B
YAML
Raw Normal View History

2019-07-30 23:59:12 +00:00
repos:
- repo: https://github.com/psf/black
2019-07-30 23:59:12 +00:00
rev: 19.3b0
hooks:
- id: black
args:
- --safe
- --quiet
2019-10-18 19:20:27 +00:00
files: ^((homeassistant|script|tests)/.+)?[^/]+\.py$
2019-08-18 04:15:55 +00:00
- repo: https://gitlab.com/pycqa/flake8
rev: 3.7.8
hooks:
- id: flake8
additional_dependencies:
- flake8-docstrings==1.3.1
- pydocstyle==4.0.0
2019-10-18 19:20:27 +00:00
files: ^(homeassistant|script|tests)/.+\.py$
# Using a local "system" mypy instead of the mypy hook, because its
# results depend on what is installed. And the mypy hook runs in a
# virtualenv of its own, meaning we'd need to install and maintain
# another set of our dependencies there... no. Use the "system" one
# and reuse the environment that is set up anyway already instead.
- repo: local
hooks:
- id: mypy
name: mypy
entry: mypy
language: system
types: [python]
require_serial: true
2019-10-18 19:20:27 +00:00
files: ^homeassistant/.+\.py$