mirror of
https://github.com/sascha-hemi/hacs_waste_collection_schedule.git
synced 2026-03-21 00:04:11 +01:00
* Update `devcontainer` to latest structure and images Current source has deprecation message, and simply did not work * Adapt `renosyd_dk` to new API * Remove storskrald It's now sourced on a different endpoint. It's also a service that is ordered, so may make little sense to keep on a schedule. * reformatting * allow integer house_number --------- Co-authored-by: 5ila5 <5ila5@users.noreply.github.com>
38 lines
1.0 KiB
JSON
38 lines
1.0 KiB
JSON
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
|
|
{
|
|
"name": "Waste Collection Schedule development",
|
|
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
|
|
"appPort": [
|
|
"9123:8123"
|
|
],
|
|
"containerEnv": {
|
|
"TZ": "Europe/Berlin" // Set your local timezone here
|
|
},
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/python:1": {}
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"ms-python.python",
|
|
"github.vscode-pull-request-github",
|
|
"ryanluker.vscode-coverage-gutters",
|
|
"ms-python.vscode-pylance"
|
|
],
|
|
"settings": {
|
|
"files.eol": "\n",
|
|
"editor.tabSize": 4,
|
|
"terminal.integrated.shell.linux": "/bin/bash",
|
|
"python.defaultInterpreterPath": "/usr/bin/python3",
|
|
"python.analysis.autoSearchPaths": false,
|
|
"python.linting.pylintEnabled": true,
|
|
"python.linting.enabled": true,
|
|
"python.formatting.provider": "black",
|
|
"editor.formatOnPaste": false,
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnType": true,
|
|
"files.trimTrailingWhitespace": true
|
|
}
|
|
}
|
|
}
|
|
} |