7 changed files with 42 additions and 46 deletions
@ -0,0 +1,13 @@
@@ -0,0 +1,13 @@
|
||||
{ |
||||
"image": "ghcr.io/benc-uk/devcontainers/python:latest", |
||||
"remoteUser": "vscode", |
||||
"forwardPorts": [5000], |
||||
"extensions": [ |
||||
"ms-python.python", |
||||
"mikestead.dotenv", |
||||
"esbenp.prettier-vscode", |
||||
"ms-azuretools.vscode-bicep", |
||||
"cschleiden.vscode-github-actions", |
||||
"github.vscode-pull-request-github" |
||||
] |
||||
} |
@ -0,0 +1,7 @@
@@ -0,0 +1,7 @@
|
||||
semi: false |
||||
singleQuote: true |
||||
printWidth: 120 |
||||
tabWidth: 2 |
||||
arrowParens: always |
||||
bracketSpacing: true |
||||
useTabs: false |
@ -1,5 +1,9 @@
@@ -1,5 +1,9 @@
|
||||
{ |
||||
"python.linting.pylintEnabled": false, |
||||
"python.pythonPath": ".venv/bin/python", |
||||
"editor.semanticHighlighting.enabled": true |
||||
} |
||||
"python.pythonPath": "src/.venv/bin/python", |
||||
"editor.semanticHighlighting.enabled": true, |
||||
"editor.formatOnSave": true, |
||||
"[python]": { |
||||
"editor.defaultFormatter": "ms-python.python" |
||||
}, |
||||
"python.formatting.provider": "black" |
||||
} |
||||
|
Loading…
Reference in new issue