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

Commit 29bca16

Browse files
committed
Remove trailing commas
1 parent c6ad457 commit 29bca16

File tree

11 files changed

+15
-15
lines changed

11 files changed

+15
-15
lines changed

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"dockerfile": "Dockerfile"
44
},
55
"runArgs": [
6-
"--shm-size=1g",
6+
"--shm-size=1g"
77
],
88
// Configure tool-specific properties.
99
"customizations": {
@@ -38,7 +38,7 @@
3838
"5901": {
3939
"label": "VNC TCP port (password: vscode)",
4040
"onAutoForward": "silent"
41-
},
41+
}
4242
},
4343
"postCreateCommand": "bash .devcontainer/postCreateCommand.sh",
4444
"remoteUser": "node",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
{
1515
"default": true,
1616
"name": "JavaSE-1.8",
17-
"path": "/usr/lib/jvm/zulu-8-amd64",
17+
"path": "/usr/lib/jvm/zulu-8-amd64"
1818
}
1919
]
2020
},

containers/cpp-mariadb/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"extensions": [
1313
"ms-vscode.cpptools",
1414
"ms-vscode.cmake-tools",
15-
"ms-vscode.cpptools-extension-pack",
15+
"ms-vscode.cpptools-extension-pack"
1616
]
1717
}
1818
},

containers/docker-existing-docker-compose/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
// The optional 'workspaceFolder' property is the path VS Code should open by default when
1717
// connected. This is typically a file mount in .devcontainer/docker-compose.yml
18-
"workspaceFolder": "/workspace",
18+
"workspaceFolder": "/workspace"
1919

2020
// Use 'forwardPorts' to make a list of ports inside the container available locally.
2121
// "forwardPorts": [],

containers/docker-existing-dockerfile/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"context": "..",
66

77
// Update the 'dockerFile' property if you aren't using the standard 'Dockerfile' filename.
8-
"dockerFile": "Dockerfile",
8+
"dockerFile": "Dockerfile"
99

1010
// Use 'forwardPorts' to make a list of ports inside the container available locally.
1111
// "forwardPorts": [],

containers/elm/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@
3939
// Adding this volume will preserve the elm cache between rebuilds though, fixing this issue
4040
"mounts": [
4141
"source=vscode-devcontainer-elm-dependency-cache,target=/home/node/.elm,type=volume"
42-
],
42+
]
4343
}

containers/hugo/.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// Rebuild the container if it already exists to update.
1313
"VERSION": "latest",
1414
// Update NODE_VERSION to pick the Node.js version: 12, 14
15-
"NODE_VERSION": "14",
15+
"NODE_VERSION": "14"
1616
}
1717
},
1818

@@ -22,7 +22,7 @@
2222
"vscode": {
2323
// Set *default* container specific settings.json values on container create.
2424
"settings": {
25-
"html.format.templating": true,
25+
"html.format.templating": true
2626
},
2727

2828
// Add the IDs of extensions you want installed when the container is created.

containers/kubernetes-helm-minikube/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"runArgs": ["--privileged"],
55
"mounts": [
66
"source=minikube-var-lib-docker,target=/var/lib/docker,type=volume",
7-
"source=minikube-config,target=/home/vscode/.minikube,type=volume",
7+
"source=minikube-config,target=/home/vscode/.minikube,type=volume"
88
],
99
"overrideCommand": false,
1010

repository-containers/github.com/tensorflow/addons/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"C_Cpp.default.includePath": [
2929
"${workspaceFolder}/**",
3030
"/usr/local/lib/python3.6/dist-packages/tensorflow/include/"
31-
],
31+
]
3232
},
3333

3434
// Add the IDs of extensions you want installed when the container is created.

repository-containers/github.com/tensorflow/tensorflow/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
],
2323
"C_Cpp.clang_format_style": "{BasedOnStyle: Google}",
2424
"C_Cpp.default.includePath": [
25-
"${workspaceFolder}/**",
25+
"${workspaceFolder}/**"
2626
],
2727
"files.watcherExclude": {
2828
"**/bazel-*/**": true

0 commit comments

Comments
 (0)