File: devcontainer.json

package info (click to toggle)
python-polsarpro 2026.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 17,024 kB
  • sloc: python: 3,830; xml: 293; sh: 91; javascript: 18; makefile: 3
file content (29 lines) | stat: -rw-r--r-- 769 bytes parent folder | download | duplicates (3)
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
{
  "name": "polsarpro-dev",
  "dockerComposeFile": "../docker-compose.yml",
  "service": "polsarpro-dev",
  "workspaceFolder": "/polsarpro-dev",
  "customizations": {
    "vscode": {
      "extensions": [
        "ms-python.python",
        // "ms-python.vscode-pylance",
        // "ms-python.pylint",
        // "ms-python.flake8",
        "ms-python.isort",
        // "ms-python.autopep8",
        "ms-python.black-formatter",
        "ms-toolsai.jupyter",
        "njpwerner.autodocstring"
      ],
      "settings": {
        "git.ignoreLimitWarning": true,
        // "python.formatting.provider": "none",
        "[python]": {
          "editor.defaultFormatter": "ms-python.black-formatter",
          "editor.formatOnSave": true
        }
      }
    }
  }
}