File tree 3 files changed +21
-2
lines changed
3 files changed +21
-2
lines changed Original file line number Diff line number Diff line change
1
+ ARG VARIANT="1"
2
+ FROM mcr.microsoft.com/devcontainers/rust:${VARIANT}
3
+ RUN apt update && apt install -y cmake
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " Rust" ,
3
+ "build" : {
4
+ "dockerfile" : " Dockerfile" ,
5
+ "args" : { "VARIANT" : " 1" }
6
+ },
7
+ "customizations" : {
8
+ "vscode" : {
9
+ "extensions" : [
10
+ " EditorConfig.EditorConfig" ,
11
+ " rust-lang.rust-analyzer"
12
+ ]
13
+ }
14
+ },
15
+ "remoteUser" : " vscode"
16
+ }
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ indent_size = 2
16
16
[Makefile ]
17
17
indent_style = tab
18
18
19
- # Matches the exact files either package.json or .travis.yml
20
- [{package .json,.travis.yml} ]
19
+ # Matches .json files or the exact file .travis.yml
20
+ [{* .json,.travis.yml} ]
21
21
indent_style = space
22
22
indent_size = 2
You can’t perform that action at this time.
0 commit comments