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.
1 parent 177dfcf commit 3bd8cffCopy full SHA for 3bd8cff
.editorconfig
@@ -0,0 +1,22 @@
1
+root = true
2
+[*.rs]
3
+indent_style=tab
4
+indent_size=tab
5
+tab_width=4
6
+end_of_line=lf
7
+charset=utf-8
8
+trim_trailing_whitespace=true
9
+max_line_length=100
10
+insert_final_newline=true
11
+
12
+[*.yml]
13
+indent_style=space
14
+indent_size=2
15
+tab_width=8
16
17
18
+[*.sh]
19
20
21
22
scripts/init.sh
@@ -5,8 +5,8 @@ set -e
echo "*** Initializing WASM build environment"
if [ -z $CI_PROJECT_NAME ] ; then
- rustup update nightly
- rustup update stable
+ rustup update nightly
+ rustup update stable
fi
rustup target add wasm32-unknown-unknown --toolchain nightly
0 commit comments