-
Notifications
You must be signed in to change notification settings - Fork 0
/
.devcontainer.json
41 lines (41 loc) · 1.77 KB
/
.devcontainer.json
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
{
"name": "python-package-automation",
"onCreateCommand": "pip install esbonio pylama sphinx_rtd_theme pipreqs && pipreqs && pip install -r requirements.txt",
"customizations": {
"vscode": {
"extensions": [
"njpwerner.autodocstring",
"cschleiden.vscode-github-actions",
"eamodio.gitlens",
"VisualStudioExptTeam.vscodeintellicode",
"bierner.markdown-preview-github-styles",
"DavidAnson.vscode-markdownlint",
"PKief.material-icon-theme",
"ms-python.vscode-pylance",
"ms-python.python",
"trond-snekvik.simple-rst",
"lextudio.restructuredtext"],
"settings": {
"esbonio.sphinx.buildDir": "${workspaceFolder}/docs/_build",
"esbonio.sphinx.confDir": "${workspaceFolder}/docs",
"python.linting.pylintEnabled": false,
"python.linting.pylamaEnabled": true,
"python.linting.enabled": true,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 1000,
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"python.formatting.autopep8Args": ["--experimental"],
"editor.formatOnSave": true,
"editor.suggestSelection": "first",
"python.languageServer": "Pylance",
"workbench.iconTheme": "material-icon-theme",
"autoDocstring.docstringFormat": "numpy",
"editor.inlineSuggest.enabled": true,
"autoDocstring.startOnNewLine": true,
"git.enableCommitSigning": true
}
}
}
}