Skip to content

Commit 3df5a33

Browse files
committed
workaround bad linter
1 parent 2790be9 commit 3df5a33

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

docs/early-access/devcontainers.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,8 @@ resource "coder_devcontainer" "my-repository" {
111111
> container's workspace and should point to a valid project folder containing a
112112
> `devcontainer.json` file.
113113
114+
<!-- nolint:MD028/no-blanks-blockquote -->
115+
114116
> [!TIP]
115117
>
116118
> Consider using the [`git-clone`](https://registry.coder.com/modules/git-clone)
@@ -238,7 +240,7 @@ For example, with this `devcontainer.json` configuration:
238240

239241
```json
240242
{
241-
"appPort": ["8080:8080", "4000:3000"]
243+
"appPort": ["8080:8080", "4000:3000"]
242244
}
243245
```
244246

@@ -266,12 +268,12 @@ To use the code-server feature, add the following to your `devcontainer.json`:
266268

267269
```json
268270
{
269-
"features": {
270-
"ghcr.io/coder/devcontainer-features/code-server:1": {
271-
"port": 13337
272-
}
273-
},
274-
"appPort": [13337]
271+
"features": {
272+
"ghcr.io/coder/devcontainer-features/code-server:1": {
273+
"port": 13337
274+
}
275+
},
276+
"appPort": [13337]
275277
}
276278
```
277279

0 commit comments

Comments
 (0)