Dev container (#302)

This commit is contained in:
Julie Koubová 2022-11-15 01:49:36 +01:00 committed by GitHub
parent 0aafb5c654
commit fa8d076e4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{
"name": "ESPHome API Client Dev",
"image": "ghcr.io/esphome/aioesphomeapi-proto-builder:latest",
"extensions": [
"ms-python.python",
"visualstudioexptteam.vscodeintellicode",
// yaml
"redhat.vscode-yaml",
// editorconfig
"editorconfig.editorconfig",
// protobuf
"pbkit.vscode-pbkit"
],
"settings": {
"python.languageServer": "Pylance",
"python.pythonPath": "/usr/bin/python3",
"python.linting.pylintEnabled": true,
"python.linting.enabled": true,
"python.formatting.provider": "black",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"files.trimTrailingWhitespace": true,
"terminal.integrated.defaultProfile.linux": "bash",
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/*.pyc": {
"when": "$(basename).py"
},
"**/__pycache__": true
},
"files.associations": {
"**/.vscode/*.json": "jsonc"
}
}
}