Match linting rules after merging in template

This commit is contained in:
Jason Carver
2019-11-26 12:55:59 -08:00
parent 27da312285
commit d1b5a56ccf
4 changed files with 11 additions and 16 deletions

View File

@ -6,13 +6,13 @@ disallow_untyped_defs = True
disallow_any_generics = True
disallow_untyped_calls = True
disallow_untyped_decorators = True
disallow_subclassing_any = True
disallow_subclassing_any = False
ignore_missing_imports = True
strict_optional = False
warn_unused_ignores = True
strict_equality = True
warn_redundant_casts = True
warn_return_any = True
warn_return_any = False
warn_unused_configs = True
warn_unreachable = True