You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[docs] Include a real listing of the flags strict enables in the online documentation (#19062)
Fixes#19061
Currently, https://mypy.readthedocs.io/en/stable/command_line.html just
says
> You can see the list of flags enabled by strict mode in the full [mypy
--help](https://mypy.readthedocs.io/en/stable/command_line.html#cmdoption-mypy-h)
output.
Which makes cross-referencing the documentation difficult. Instead,
there should be the same list there as appears when running `mypy
--help`: eg
> --warn-unused-configs, --disallow-any-generics,
--disallow-subclassing-any, --disallow-untyped-
calls, --disallow-untyped-defs, --disallow-
incomplete-defs, --check-untyped-defs, --disallow-
untyped-decorators, --warn-redundant-casts,
--warn-unused-ignores, --warn-return-any, --no-
implicit-reexport, --strict-equality, --extra-
checks
Ideally this section would be automatically generated from the code.
0 commit comments