Skip to content

Commit

Permalink
πŸ§ͺπŸ’… Lower-case bools in MyPy config
Browse files Browse the repository at this point in the history
  • Loading branch information
webknjaz committed Aug 31, 2024
1 parent b253381 commit cbf0b9e
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .mypy.ini
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
[mypy]
python_version = 3.8
color_output = True
error_summary = True
color_output = true
error_summary = true
files =
packaging/,
tests/,
yarl/

# check_untyped_defs = True
# check_untyped_defs = true

# disallow_untyped_calls = True
# disallow_untyped_defs = True
# disallow_any_generics = True
# disallow_untyped_calls = true
# disallow_untyped_defs = true
# disallow_any_generics = true

enable_error_code =
ignore-without-code

follow_imports = normal

ignore_missing_imports = False
ignore_missing_imports = false

pretty = true

show_column_numbers = true
show_error_codes = true
strict_optional = True
strict_optional = true

warn_no_return = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_no_return = true
warn_redundant_casts = true
warn_unused_ignores = true

[mypy-Cython.*]
ignore_missing_imports = true
Expand Down

0 comments on commit cbf0b9e

Please sign in to comment.