summaryrefslogtreecommitdiff
path: root/.devcontainer.json
blob: d939b02ec95035f0a44ff248af2d4507a316cecc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "dockerComposeFile": "docker-compose.yml",
  "service": "devcontainer",
  "workspaceFolder": "/srv/workspace/",
  "shutdownAction": "stopCompose",
  "settings": {
    "python.linting.mypyEnabled": true,
    "python.linting.flake8Enabled": true,
    "python.linting.pylintEnabled": false,
    "python.formatting.provider": "black"
  },
  "extensions": [
    "ms-python.python",
    "redhat.vscode-yaml",
    "redhat.vscode-xml",
    "stardog-union.stardog-rdf-grammars",
    "lextudio.restructuredtext",
    "trond-snekvik.simple-rst",
    "EditorConfig.EditorConfig",
    "paulvarache.vscode-taskfile",
    "stardog-union.vscode-stardog-languages"
  ],
  "postCreateCommand": "poetry install --all-extras"
}