forked from DasBasti/pySmartHashtag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.devcontainer.json
More file actions
27 lines (27 loc) · 857 Bytes
/
.devcontainer.json
File metadata and controls
27 lines (27 loc) · 857 Bytes
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
{
"name": "pySmartHashtag",
"image": "mcr.microsoft.com/devcontainers/python:dev-3.14-bookworm",
"postCreateCommand": "pip install -r requirements.txt && pip install -r requirements-test.txt && pip install -e .",
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"charliermarsh.ruff",
"github.vscode-pull-request-github",
"ryanluker.vscode-coverage-gutters",
"ms-python.vscode-pylance"
],
"settings": {
"files.eol": "\n",
"editor.tabSize": 4,
"python.analysis.autoSearchPaths": false,
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"files.trimTrailingWhitespace": true
}
}
},
"remoteUser": "vscode"
}