File: devcontainer.json

package info (click to toggle)
python-avro 1.12.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,180 kB
  • sloc: python: 7,734; sh: 771; xml: 738; java: 386; makefile: 28
file content (36 lines) | stat: -rw-r--r-- 998 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
26
27
28
29
30
31
32
33
34
35
36
{
    "name": "Avro Development",
    "build": {
        "dockerfile": "../share/docker/Dockerfile",
        "context": ".."
    },
    "customizations": {
        "vscode": {
            "settings": {
            },
            "extensions": [
                // Python
                "ms-python.python",
                "ms-python.vscode-pylance",
                // C/C++
                "ms-vscode.cpptools",
                // C#
                "ms-dotnettools.csharp",
                // Rust
                "vadimcn.vscode-lldb",
                "mutantdino.resourcemonitor",
                "matklad.rust-analyzer",
                "tamasfe.even-better-toml",
                "serayuzgur.crates",
                // Java
                "vscjava.vscode-java-pack",
                // Shell script
                "timonwong.shellcheck",
                // YAML
                "redhat.vscode-yaml",
                // Git
                "eamodio.gitlens"
            ]
        }
    }
}