8000 gh-108455: Simplify the peg_generator mypy config by AlexWaygood · Pull Request #108620 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-108455: Simplify the peg_generator mypy config #108620

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 29, 2023
Merged
Changes from 1 commit
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
Next Next commit
gh-108455: Simplify the peg_generator mypy config
  • Loading branch information
AlexWaygood committed Aug 29, 2023
commit d52c15a11f343a104e882204bf059ab701dee629
27 changes: 9 additions & 18 deletions Tools/peg_generator/mypy.ini
Original file line number Diff line number Diff line change
@@ -1,27 +1,18 @@
[mypy]
files = Tools/peg_generator/pegen
pretty = True
show_traceback = True

follow_imports = error
no_implicit_optional = True
strict_optional = True

#check_untyped_defs = True
disallow_untyped_calls = True
disallow_untyped_defs = True

disallow_any_generics = true
disallow_any_unimported = True
disallow_incomplete_defs = True
disallow_subclassing_any = True
# Make sure the peg_generator can be run using Python 3.10:
python_version = 3.10

warn_unused_configs = True
warn_unused_ignores = true
warn_redundant_casts = true
warn_no_return = True
# Be strict...
strict = True

show_traceback = True
show_error_codes = True
# except for a few settings that can't yet be enabled:
check_untyped_defs = False
warn_return_any = False
no_implicit_reexport = False

[mypy-pegen.grammar_parser]
strict_optional = False
Expand Down
0