We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 287c45a commit 267d376Copy full SHA for 267d376
docs/source/existing_code.rst
@@ -183,15 +183,14 @@ An excellent goal to aim for is to have your codebase pass when run against ``my
183
This basically ensures that you will never have a type related error without an explicit
184
circumvention somewhere (such as a ``# type: ignore`` comment).
185
186
-The following config is equivalent to ``--strict`` (as of mypy 0.990):
+The following config is equivalent to ``--strict`` (as of mypy 1.0):
187
188
.. code-block:: text
189
190
# Start off with these
191
warn_unused_configs = True
192
warn_redundant_casts = True
193
warn_unused_ignores = True
194
- no_implicit_optional = True
195
196
# Getting these passing should be easy
197
strict_equality = True
0 commit comments