stable/setup.cfg

21 lines
266 B
INI
Raw Normal View History

2017-12-16 02:28:29 +00:00
[flake8]
2017-12-16 02:39:47 +00:00
#ignore =
2017-12-16 02:28:29 +00:00
max-line-length = 100
max-complexity = 12
2019-09-08 08:17:44 +00:00
exclude =
.git,
__pycache__,
.eggs,
user_data,
2018-05-31 20:09:31 +00:00
2020-09-28 15:35:04 +00:00
[isort]
line_length=100
multi_line_output=0
2020-09-28 17:39:41 +00:00
lines_after_imports=2
2020-09-28 15:35:04 +00:00
2018-05-31 20:09:31 +00:00
[mypy]
ignore_missing_imports = True
2018-06-08 17:54:27 +00:00
2019-09-08 08:17:44 +00:00
[mypy-tests.*]
2018-06-08 17:54:27 +00:00
ignore_errors = True