File: devcontainer.json

package info (click to toggle)
python-smhi 1.0.19-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 524 kB
  • sloc: python: 10,238; sh: 4; makefile: 3
file content (25 lines) | stat: -rw-r--r-- 680 bytes parent folder | download
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
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
{
	"context": "..",
	"name": "SMHI Dev",
	"image": "python:3.10-bullseye",
	"postCreateCommand": "python3 -m pip install -r requirements.txt",
	"runArgs": [
		"-e",
		"GIT_EDTIOR='code --wait'"
	],
	"extensions": [
		"ms-python.python"
	],
	"settings": {
		"terminal.integrated.shell.linux": "/bin/bash",
		"python.pythonPath": "/usr/local/bin/python",
		"python.linting.pylintEnabled": true,
		"python.linting.enabled": true,
		"python.formatting.provider": "black",
		"editor.formatOnPaste": false,
		"editor.formatOnSave": true,
		"editor.formatOnType": true,
		"files.trimTrailingWhitespace": true
	}
}