2022-05-31 23:04:47 +02:00
|
|
|
# Setuptools v62.3 doesn't support editable installs with just 'pyproject.toml' (PEP 660).
|
|
|
|
# Keep this file until it does!
|
|
|
|
|
2018-06-25 15:57:26 +02:00
|
|
|
[metadata]
|
2022-01-28 17:11:46 +01:00
|
|
|
url = https://www.home-assistant.io/
|
2018-06-25 15:57:26 +02:00
|
|
|
|
2016-02-13 19:56:32 -05:00
|
|
|
[flake8]
|
2017-11-19 17:39:24 -08:00
|
|
|
exclude = .venv,.git,.tox,docs,venv,bin,lib,deps,build
|
2021-04-25 00:38:40 -10:00
|
|
|
max-complexity = 25
|
2019-11-06 21:38:00 +02:00
|
|
|
doctests = True
|
2019-07-30 16:59:12 -07:00
|
|
|
# To work with Black
|
|
|
|
# E501: line too long
|
|
|
|
# W503: Line break occurred before a binary operator
|
|
|
|
# E203: Whitespace before ':'
|
|
|
|
# D202 No blank lines allowed after function docstring
|
2019-09-23 23:23:53 -07:00
|
|
|
# W504 line break after binary operator
|
2019-07-30 16:59:12 -07:00
|
|
|
ignore =
|
|
|
|
E501,
|
|
|
|
W503,
|
|
|
|
E203,
|
2019-09-23 23:23:53 -07:00
|
|
|
D202,
|
|
|
|
W504
|
2021-03-02 10:02:04 +02:00
|
|
|
noqa-require-code = True
|