We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
gitpod.yml
1 parent ff4e2af commit ed340c0Copy full SHA for ed340c0
.gitpod.yml
@@ -0,0 +1,7 @@
1
+image:
2
+ file: .gitpod/Dockerfile
3
+tasks:
4
+ - init: cargo build --tests && cargo install --path . && git branchless init
5
+vscode:
6
+ extensions:
7
+ - "matklad.rust-analyzer"
.gitpod/Dockerfile
@@ -0,0 +1,5 @@
+FROM gitpod/workspace-full
+
+# The following environment variables are necessary for `cargo test` to pass.
+# Determined by running `which git` and `git --exec-path`.
+ENV PATH_TO_GIT=/usr/bin/git GIT_EXEC_PATH=/usr/lib/git-core
.vscode/settings.json
@@ -1,4 +1,5 @@
{
"editor.formatOnSave": true,
- "editor.formatOnType": true
+ "editor.formatOnType": true,
+ "files.insertFinalNewline": true
}
0 commit comments