srne-mqtt/.vscode/settings.json

14 lines
430 B
JSON
Raw Permalink Normal View History

2021-10-31 16:03:18 +00:00
{
2023-12-08 12:45:38 +00:00
"editor.formatOnSave": true,
"pylint.args": [
"--disable=missing-function-docstring,missing-class-docstring,missing-module-docstring"
],
"python.testing.unittestEnabled": false,
2023-12-09 15:35:45 +00:00
"python.testing.pytestEnabled": true,
"mypy-type-checker.importStrategy": "fromEnvironment",
"mypy-type-checker.reportingScope": "workspace",
"mypy-type-checker.preferDaemon": true,
"mypy-type-checker.args": [
"--check-untyped-defs"
]
2023-12-08 12:45:38 +00:00
}