У меня есть ESP32, поэтому мой пример конфигурации будет основан на ESP32. Загрузка https://github.com/lixas/ESP32-Stubs-VSCode
ИЛИ
Используйте для генерации для своей доски следующее: https://github.com/Josverl/micropython-stubber и загрузите эти файлы с доски
Мои настройки. json Файл:
{
"python.linting.enabled": true,
"python.jediEnabled": false,
"python.autoComplete.extraPaths": [
"C:\\Users\\lixas\\Workspace\\Python\\stubs\\esp32_1_11_0",
".micropy\\RX"
],
"python.autoComplete.typeshedPaths": [
"C:\\Users\\lixas\\Workspace\\Python\\stubs\\esp32_1_11_0",
".micropy\\RX"
],
"python.analysis.typeshedPaths": [
"C:\\Users\\lixas\\Workspace\\Python\\stubs\\esp32_1_11_0",
".micropy\\RX"
],
"python.linting.pylintEnabled": false,
"files.exclude": {
".vscode": true,
".micropy": true,
".gitignore": true,
".pylintrc": true,
"micropy.json": true,
"pymakr.conf": true,
"*requirements.txt": true
},
"python.linting.banditEnabled": true,
"python.linting.flake8Enabled": false
}