8000 Update `config_file` docs by sobolevn · Pull Request #18103 · python/mypy · GitHub
[go: up one dir, main page]

Skip to content

Update config_file docs #18103

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 3 commits into from
Nov 4, 2024
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
Prev Previous commit
Update config_file.rst
  • Loading branch information
sobolevn authored Nov 4, 2024
commit 94fc7cc42ad30adf4ea0bf746295b0f26b6c5603
31 changes: 14 additions & 17 deletions docs/source/config_file.rst
Original file line number Diff line number Diff line change
Expand Up @@ -747,33 +747,30 @@ section of the command line docs.

.. confval:: strict_concatenate

:type: boolean
:default: False

Make arguments prepended via ``Concatenate`` be truly positional-only.
:type: boolean
:default: False

.. warning::
Deprecated: use :confval:`extra_checks` instead.
Make arguments prepended via ``Concatenate`` be truly positional-only.

.. confval:: strict_equality

:type: boolean
:default: False
:type: boolean
:default: False

Prohibit equality checks, identity checks, and container checks between
non-overlapping types.
Prohibit equality checks, identity checks, and container checks between
non-overlapping types.

.. confval:: strict

:type: boolean
:default: False
:type: boolean
:default: False

Enable all optional error checking flags. You can see the list of
flags enabled by strict mode in the full :option:`mypy --help`
output.
Enable all optional error checking flags. You can see the list of
flags enabled by strict mode in the full :option:`mypy --help`
output.

Note: the exact list of flags enabled by :confval:`strict` may
change over time.
Note: the exact list of flags enabled by :confval:`strict` may
change over time.


Configuring error messages
Expand Down
0