Skip to content

Instantly share code, notes, and snippets.

@pesader
Last active August 21, 2022 21:20
Show Gist options
  • Save pesader/003e4b85683e0a59cc386aad67cc56c1 to your computer and use it in GitHub Desktop.
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
{
"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