You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
331 B
INI
12 lines
331 B
INI
[flake8]
|
|
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
|
|
|
|
[mypy]
|
|
disallow_incomplete_defs=True
|
|
disallow_untyped_defs=True
|
|
check_untyped_defs=True
|
|
no_implicit_optional=True
|