Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -150,26 +150,25 @@ addopts = [
# The mypy configurations: http://bit.ly/2zEl9WI
ignore_missing_imports = true
strict = true
strict_bytes = true
local_partial_types = true
strict_equality_for_none = true
warn_unreachable = true

exclude = [
'{{cookiecutter.project_name}}',
]

enable_error_code = [
"truthy-bool",
"truthy-iterable",
"redundant-expr",
"unused-awaitable",
"deprecated",
"exhaustive-match",
"explicit-override",
"ignore-without-code",
"possibly-undefined",
"redundant-expr",
"redundant-self",
"explicit-override",
"mutable-override",
"truthy-bool",
"truthy-iterable",
"unimported-reveal",
"deprecated",
"unused-awaitable",
]


Expand Down