mirror of
https://github.com/jpawlowski/hass.tibber_prices.git
synced 2026-03-30 05:13:40 +00:00
fix(devcontainer): suppress unused import and variable warnings in Python analysis
This commit is contained in:
parent
821131dbe9
commit
781286216a
1 changed files with 6 additions and 0 deletions
|
|
@ -39,6 +39,12 @@
|
|||
"python.analysis.typeCheckingMode": "basic",
|
||||
"python.analysis.autoImportCompletions": true,
|
||||
"python.analysis.diagnosticMode": "workspace",
|
||||
"python.analysis.diagnosticSeverityOverrides": {
|
||||
"reportUnusedImport": "none",
|
||||
"reportUnusedVariable": "none",
|
||||
"reportUnusedCoroutine": "none",
|
||||
"reportMissingTypeStubs": "none"
|
||||
},
|
||||
"python.analysis.include": [
|
||||
"custom_components/tibber_prices"
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in a new issue