|
401 | 401 | "default": false, |
402 | 402 | "type": "boolean" |
403 | 403 | }, |
| 404 | + "strict_equality_for_none": { |
| 405 | + "description": "Include `None` in strict equality checks. Requires `strict_equality` to be activated.", |
| 406 | + "markdownDescription": "Include `None` in strict equality checks. Requires `strict_equality` to be activated.\n\nhttps://mypy.readthedocs.io/en/stable/config_file.html#confval-strict_equality_for_none", |
| 407 | + "x-intellij-html-description": "Include <code>None</code> in strict equality checks. Requires <code>strict_equality</code> to be activated.", |
| 408 | + "default": false, |
| 409 | + "type": "boolean" |
| 410 | + }, |
404 | 411 | "strict": { |
405 | 412 | "description": "Enable all optional error checking flags. You can see the list of flags enabled by strict mode in the full `mypy --help` output. The exact list of flags enabled by `strict` may change over time.", |
406 | 413 | "x-intellij-html-description": "Enable all optional error checking flags. You can see the list of flags enabled by strict mode in the full <code>mypy --help</code> output. The exact list of flags enabled by <code>strict</code> may change over time.", |
|
491 | 498 | "default": false, |
492 | 499 | "type": "boolean" |
493 | 500 | }, |
| 501 | + "fixed_format_cache": { |
| 502 | + "description": "Use a new experimental cache format for faster incremental builds. Makes incremental builds up to twice as fast. This is experimental and currently only supported when using a compiled version of mypy.", |
| 503 | + "markdownDescription": "Use a new experimental cache format for faster incremental builds. Makes incremental builds up to twice as fast. This is experimental and currently only supported when using a compiled version of mypy.\n\nhttps://mypy.readthedocs.io/en/stable/config_file.html#confval-fixed_format_cache", |
| 504 | + "x-intellij-html-description": "Use a new experimental cache format for faster incremental builds. Makes incremental builds up to twice as fast. This is experimental and currently only supported when using a compiled version of mypy.", |
| 505 | + "default": false, |
| 506 | + "type": "boolean" |
| 507 | + }, |
494 | 508 | "plugins": { |
495 | 509 | "description": "A comma-separated list of mypy plugins.", |
496 | 510 | "markdownDescription": "A comma-separated list of mypy plugins. See <i>[Extending mypy using plugins](https://mypy.readthedocs.io/en/stable/extending_mypy.html#extending-mypy-using-plugins)</i>.", |
|
763 | 777 | "strict_equality": { |
764 | 778 | "$ref": "#/properties/strict_equality" |
765 | 779 | }, |
| 780 | + "strict_equality_for_none": { |
| 781 | + "$ref": "#/properties/strict_equality_for_none" |
| 782 | + }, |
766 | 783 | "strict_bytes": { |
767 | 784 | "$ref": "#/properties/strict_bytes" |
768 | 785 | }, |
|
817 | 834 | "skip_cache_mtime_checks": { |
818 | 835 | "$ref": "#/properties/skip_cache_mtime_checks" |
819 | 836 | }, |
| 837 | + "fixed_format_cache": { |
| 838 | + "$ref": "#/properties/fixed_format_cache" |
| 839 | + }, |
820 | 840 | "plugins": { |
821 | 841 | "$ref": "#/properties/plugins" |
822 | 842 | }, |
|
0 commit comments