Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit 3f11111

Browse files
committed
Removed dangling commas
1 parent f19fbb8 commit 3f11111

File tree

45 files changed

+302
-285
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+302
-285
lines changed
Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
{
22
"name": "Azure Ansible",
33
"dockerFile": "Dockerfile",
4-
"extensions": [
5-
"vscoss.vscode-ansible",
6-
"redhat.vscode-yaml",
7-
"ms-vscode.azurecli"
8-
],
94
"runArgs": [
5+
// Uncomment the next line if you will use a ptrace-based debugger like C++, Go, and Rust.
6+
// "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined",
107
"-v", "/var/run/docker.sock:/var/run/docker.sock"
118
],
129

@@ -17,5 +14,11 @@
1714
// "settings": { "workbench.colorTheme": "Quiet Light" },
1815

1916
// Uncomment the next line to run commands after the container is created.
20-
// "postCreateCommand": "ansible --version"
17+
// "postCreateCommand": "ansible --version",
18+
19+
"extensions": [
20+
"vscoss.vscode-ansible",
21+
"redhat.vscode-yaml",
22+
"ms-vscode.azurecli"
23+
]
2124
}
Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
{
22
"name": "Azure CLI",
33
"dockerFile": "Dockerfile",
4-
"extensions": [
5-
"ms-vscode.azurecli"
6-
],
74

5+
// Uncomment the next line if you will use a ptrace-based debugger like C++, Go, and Rust.
6+
// "runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ],
7+
88
// Uncomment the next line if you want to publish any ports.
99
// "appPort": [],
1010

1111
// Uncomment the next line if you want to add in default container specific settings.json values
1212
// "settings": { "workbench.colorTheme": "Quiet Light" },
1313

1414
// Uncomment the next line to run commands after the container is created.
15-
// "postCreateCommand": "az --version"
15+
// "postCreateCommand": "az --version",
16+
17+
"extensions": [
18+
"ms-vscode.azurecli"
19+
]
20+
1621
}

containers/azure-functions-dotnetcore-2.1/.devcontainer/devcontainer.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
"name": "Azure Functions & C# (.NET Core 2.1)",
33
"dockerFile": "Dockerfile",
44
"appPort": 7071,
5-
"extensions": [
6-
"ms-azuretools.vscode-azurefunctions",
7-
"ms-vscode.csharp"
8-
],
95

106
// Uncomment the next line if you want to add in default container specific settings.json values
117
// "settings": { "workbench.colorTheme": "Quiet Light" },
128

139
// Uncomment the next line to run commands after the container is created.
14-
// "postCreateCommand": "dotnet restore"
10+
// "postCreateCommand": "dotnet restore",
11+
12+
"extensions": [
13+
"ms-azuretools.vscode-azurefunctions",
14+
"ms-vscode.csharp"
15+
]
1516
}

containers/azure-functions-dotnetcore-latest/.devcontainer/devcontainer.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
"name": "Azure Functions & C# (.NET Core Latest)",
33
"dockerFile": "Dockerfile",
44
"appPort": 7071,
5-
"extensions": [
6-
"ms-azuretools.vscode-azurefunctions",
7-
"ms-vscode.csharp"
8-
],
95

106
// Uncomment the next line if you want to add in default container specific settings.json values
117
// "settings": { "workbench.colorTheme": "Quiet Light" },
128

139
// Uncomment the next line to run commands after the container is created.
14-
// "postCreateCommand": "dotnet restore"
10+
// "postCreateCommand": "dotnet restore",
11+
12+
"extensions": [
13+
"ms-azuretools.vscode-azurefunctions",
14+
"ms-vscode.csharp"
15+
]
1516
}

containers/azure-functions-java-8/.devcontainer/devcontainer.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
"name": "Azure Functions & Java 8",
33
"dockerFile": "Dockerfile",
44
"appPort": 7071,
5-
"extensions": [
6-
"ms-azuretools.vscode-azurefunctions",
7-
"vscjava.vscode-java-pack"
8-
],
95

106
// Uncomment the next line if you want to add in default container specific settings.json values
117
// "settings": { "workbench.colorTheme": "Quiet Light" },
128

139
// Uncomment the next line to run commands after the container is created.
14-
// "postCreateCommand": "java -version"
10+
// "postCreateCommand": "java -version",
11+
12+
"extensions": [
13+
"ms-azuretools.vscode-azurefunctions",
14+
"vscjava.vscode-java-pack"
15+
]
1516
}

containers/azure-functions-node-8/.devcontainer/devcontainer.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
"name": "Azure Functions & Node.js 8",
33
"dockerFile": "Dockerfile",
44
"appPort": 7071,
5-
"extensions": [
6-
"ms-azuretools.vscode-azurefunctions",
7-
"dbaeumer.vscode-eslint"
8-
],
95

106
// Uncomment the next line if you want to add in default container specific settings.json values
117
// "settings": { "workbench.colorTheme": "Quiet Light" },
128

139
// Uncomment the next line to run commands after the container is created.
14-
// "postCreateCommand": "npm install"
10+
// "postCreateCommand": "npm install",
11+
12+
"extensions": [
13+
"ms-azuretools.vscode-azurefunctions",
14+
"dbaeumer.vscode-eslint"
15+
]
1516
}

containers/azure-functions-node-lts/.devcontainer/devcontainer.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
"name": "Azure Functions & Node.js (latest LTS)",
33
"dockerFile": "Dockerfile",
44
"appPort": 7071,
5-
"extensions": [
6-
"ms-azuretools.vscode-azurefunctions",
7-
"dbaeumer.vscode-eslint"
8-
],
95

106
// Uncomment the next line if you want to add in default container specific settings.json values
117
// "settings": { "workbench.colorTheme": "Quiet Light" },
128

139
// Uncomment the next line to run commands after the container is created.
14-
// "postCreateCommand": "npm install"
10+
// "postCreateCommand": "npm install",
11+
12+
"extensions": [
13+
"ms-azuretools.vscode-azurefunctions",
14+
"dbaeumer.vscode-eslint"
15+
]
1516
}
Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
11
{
22
"name": "Azure Machine Learning",
33
"dockerFile": "Dockerfile",
4-
"extensions": [
4+
"runArgs": [
5+
"-v","/var/run/docker.sock:/var/run/docker.sock"
6+
],
7+
8+
// Uncomment the next line if you want to publish any ports.
9+
// "appPort": [],
10+
11+
// Uncomment the next line to run commands after the container is created.
12+
// "postCreateCommand": "pip install -r requirements.txt",
13+
14+
"extensions": [
515
"ms-toolsai.vscode-ai",
616
"peterjausovec.vscode-docker"
717
],
@@ -12,14 +22,5 @@
1222
"python.pythonPath": "/opt/conda/bin/python",
1323
"python.linting.pylintEnabled": true,
1424
"python.linting.enabled": true
15-
},
16-
"runArgs": [
17-
"-v","/var/run/docker.sock:/var/run/docker.sock"
18-
],
19-
20-
// Uncomment the next line if you want to publish any ports.
21-
// "appPort": [],
22-
23-
// Uncomment the next line to run commands after the container is created.
24-
// "postCreateCommand": "pip install -r requirements.txt"
25+
}
2526
}
Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
11
{
22
"name": "Azure Terraform",
33
"dockerFile": "Dockerfile",
4-
"extensions": [
5-
"mauve.terraform",
6-
"ms-azuretools.vscode-azureterraform",
7-
"ms-vscode.azurecli",
8-
"peterjausovec.vscode-docker"
9-
],
104
"runArgs": [
5+
// Uncomment the next line if you will use a ptrace-based debugger like C++, Go, and Rust.
6+
// "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined",
117
"-v","/var/run/docker.sock:/var/run/docker.sock"
128
],
13-
9+
1410
// Uncomment the next line if you want to publish any ports.
1511
// "appPort": [],
1612

1713
// Uncomment the next line if you want to add in default container specific settings.json values
1814
// "settings": { "workbench.colorTheme": "Quiet Light" },
1915

2016
// Uncomment the next line to run commands after the container is created.
21-
// "postCreateCommand": "terraform --version"
17+
// "postCreateCommand": "terraform --version",
18+
19+
"extensions": [
20+
"mauve.terraform",
21+
"ms-azuretools.vscode-azureterraform",
22+
"ms-vscode.azurecli",
23+
"peterjausovec.vscode-docker"
24+
]
2225
}
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "Bazel",
33
"dockerFile": "Dockerfile",
4-
"extensions": [
5-
"devondcarew.bazel-code"
6-
],
4+
5+
// Uncomment the next line if you will use a ptrace-based debugger like C++, Go, and Rust.
6+
// "runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ]
77

88
// Uncomment the next line if you want to publish any ports.
99
// "appPort": [],
@@ -14,7 +14,7 @@
1414
// Uncomment the next line to run commands after the container is created.
1515
// "postCreateCommand": "uname -a",
1616

17-
// Uncomment the next line if you will use a ptrace-based debugger like C++, Go, and Rust.
18-
// "runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ]
19-
17+
"extensions": [
18+
"devondcarew.bazel-code"
19+
]
2020
}

0 commit comments

Comments
 (0)