Last active
August 21, 2022 21:20
-
-
Save pesader/003e4b85683e0a59cc386aad67cc56c1 to your computer and use it in GitHub Desktop.
[Remove annoyances from pyright] The language server pyright is great, but it gives false positives all too often. Paste these lines on your pyrightconfig.json for a quieter coding experience. #python #pyright #lsp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"reportGeneralTypeIssues": false, | |
"reportOptionalMemberAccess": false, | |
"reportOptionalOperand": false, | |
"reportOptionalSubscript": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment