forked from t4p-community/python-codespace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
61 lines (61 loc) · 1.72 KB
/
devcontainer.json
File metadata and controls
61 lines (61 loc) · 1.72 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "Python Development Workspace",
"customizations": {
"vscode": {
"extensions": [
"GitHub.copilot",
"GitHub.copilot-chat",
"charliermarsh.ruff",
"ms-python.mypy-type-checker",
"ms-python.python"
],
"settings": {
"extensions.ignoreRecommendations": false,
"editor.formatOnSave": true,
"editor.minimap.enabled": false,
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"explorer.compactFolders": false,
"terminal.integrated.tabs.enabled": false,
"files.autoSave": "afterDelay",
"workbench.startupEditor": "none",
"window.zoomLevel": 1,
"[markdown]": {
"editor.wordWrap": "on",
"editor.indentSize": 2,
"editor.rulers": []
},
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.tabSize": 4,
"editor.inlayHints.enabled": "on",
"editor.rulers": [
79
]
},
"mypy-type-checker.severity": {
"error": "Error",
"warning": "Error",
"note": "Error",
"info": "Error"
},
"mypy-type-checker.args": [
"--config-file=.vscode/mypy.ini"
],
"ruff.format.args": [
"--line-length",
"79"
],
"ruff.lint.args": [
"--line-length",
"79",
"--select",
"E,F,W,N"
]
}
}
},
"dockerFile": "Dockerfile"
}