Skip to content

Commit

Permalink
Suppress pylance typping warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
trancelestial committed Nov 2, 2022
1 parent 57bef16 commit 74e3368
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,5 +121,12 @@
"__node_handle": "cpp"
},
"python.analysis.typeCheckingMode": "basic",
"python.analysis.diagnosticMode": "workspace"
"python.analysis.diagnosticMode": "workspace",
"python.analysis.diagnosticSeverityOverrides": {
"reportGeneralTypeIssues": "none",
"reportUnboundVariable": "none",
"reportOptionalMemberAccess": "none",
"reportOptionalSubscript": "none",
"reportOptionalCall": "none",
}
}

0 comments on commit 74e3368

Please sign in to comment.