Open vimpelican opened 5 days ago
Document the configuration in settings.json to suppress these warnings and ensure it is included in the repository for future reference.
"cmake.options.statusBarVisibility": "visible",
"python.analysis.diagnosticSeverityOverrides": {
"reportMissingImports": "none", // Add these two lines
"reportMissingModuleSource": "none" // Add these two lines
}
Image
Description
Pylance in VS Code keeps showing warnings for missing imports, which is distracting as it changes the file name color to yellow. I have added configurations to suppress these warnings, but I want to document this in our repository for future reference.