-
I want pyright to check my code with |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can specify the severity of individual diagnostic checks within the pyrightconfig.json. In strict mode, overrides will generally never make the rule less strict than the default used in strict mode. The one exception is For more details, refer to this documentation. Also, refer to this part of the pyright source code. |
Beta Was this translation helpful? Give feedback.
You can specify the severity of individual diagnostic checks within the pyrightconfig.json. In strict mode, overrides will generally never make the rule less strict than the default used in strict mode. The one exception is
reportMissingModuleSource
. For that diagnostic rule, you can override the strict-mode setting.For more details, refer to this documentation.
Also, refer to this part of the pyright source code.