breadbot/setup.cfg

12 lines
331 B
INI
Raw Normal View History

2020-02-18 05:18:30 +00:00
[flake8]
2021-07-24 19:29:26 +00:00
exclude=build,.cache,.eggs,.git,breadbot.egg-info,lib,bin
# Override the errors that Flake8 ignores by default to lint very hard.
# Only ignore W503, which is deprecated and conflicts with W504.
ignore=W503
2020-02-18 05:18:30 +00:00
2021-07-24 19:29:26 +00:00
[mypy]
disallow_incomplete_defs=True
disallow_untyped_defs=True
check_untyped_defs=True
no_implicit_optional=True