FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
api-client-python/.devcontainer/devcontainer.json at main · gleanwork/api-client-python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
gleanwork
/
api-client-python
Public
Notifications
You must be signed in to change notification settings
Fork
10
Star
20
Code
Issues
8
Pull requests
5
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
api-client-python
/
.devcontainer
/
devcontainer.json
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (38 loc) · 1.54 KB
Breadcrumbs
api-client-python
/
.devcontainer
/
devcontainer.json
Copy path
File metadata and controls
38 lines (38 loc) · 1.54 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
For format details, see https://aka.ms/devcontainer.json. For config options, see the
//
README at: https://github.com/devcontainers/images/tree/main/src/python
{
"name"
:
"
Python
"
,
"image"
:
"
mcr.microsoft.com/devcontainers/python:1-3.11-bullseye
"
,
//
Features to add to the dev container. More info: https://containers.dev/features.
//
"features": {},
//
Use 'forwardPorts' to make a list of ports inside the container available locally.
//
"forwardPorts": [],
//
Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand"
:
"
sudo chmod +x ./.devcontainer/setup.sh && ./.devcontainer/setup.sh
"
,
"customizations"
: {
"vscode"
: {
"extensions"
: [
"
ms-python.python
"
,
"
ms-python.vscode-pylance
"
,
"
github.vscode-pull-request-github
"
],
"settings"
: {
"files.eol"
:
"
\n
"
,
"editor.formatOnSave"
:
true
,
"python.formatting.provider"
:
"
black
"
,
"python.linting.enabled"
:
true
,
"python.linting.pylintEnabled"
:
true
,
"python.linting.flake8Enabled"
:
true
,
"python.linting.banditEnabled"
:
true
,
"python.testing.pytestEnabled"
:
true
}
},
"codespaces"
: {
"openFiles"
: [
"
.devcontainer/README.md
"
]
}
}
//
Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
//
"remoteUser": "root"
}
Back
|
FazBrowse Home
|
New Git URL