LoRa_APRS_iGate/.devcontainer/devcontainer.json

34 wiersze
1.1 KiB
JSON
Czysty Zwykły widok Historia

2022-05-23 21:12:30 +00:00
{
"name": "Python 3",
"build": {
"dockerfile": "Dockerfile",
"context": "..",
"args": {
"VARIANT": "3.10-bullseye"
}
},
"settings": {
"python.defaultInterpreterPath": "/usr/local/bin/python",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.formatting.autopep8Path": "/usr/local/py-utils/bin/autopep8",
"python.formatting.blackPath": "/usr/local/py-utils/bin/black",
"python.formatting.yapfPath": "/usr/local/py-utils/bin/yapf",
"python.linting.banditPath": "/usr/local/py-utils/bin/bandit",
"python.linting.flake8Path": "/usr/local/py-utils/bin/flake8",
"python.linting.mypyPath": "/usr/local/py-utils/bin/mypy",
"python.linting.pycodestylePath": "/usr/local/py-utils/bin/pycodestyle",
"python.linting.pydocstylePath": "/usr/local/py-utils/bin/pydocstyle",
2022-05-26 06:08:47 +00:00
"python.linting.pylintPath": "/usr/local/py-utils/bin/pylint",
"clang-format.executable": "clang-format-11"
2022-05-23 21:12:30 +00:00
},
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
2022-05-26 06:08:47 +00:00
"platformio.platformio-ide",
"xaver.clang-format"
2022-05-23 21:12:30 +00:00
],
"postCreateCommand": "pip3 install --user platformio",
2022-05-23 21:16:57 +00:00
//"remoteUser": "vscode"
2022-05-23 21:12:30 +00:00
}