Add default vscode settings for Gitpod

Signed-off-by: Muhammet Kara <muhammet.kara@collabora.com>
Change-Id: I373f6c13a0c1f2634677ea600f90c1452b44283c
pull/2828/head
Muhammet Kara 2021-07-13 11:58:00 +03:00 committed by Muhammet Kara
parent dd05248033
commit a47d70f26d
2 changed files with 11 additions and 1 deletions

View File

@ -0,0 +1,10 @@
{
"editor.renderWhitespace": "all",
"[css]": {
"editor.insertSpaces": false
},
"[javascript]": {
"editor.insertSpaces": false
},
}

View File

@ -34,5 +34,5 @@ github:
tasks:
- init: cd .. && wget https://github.com/CollaboraOnline/online/releases/download/for-code-assets/core-co-2021-assets.tar.gz
prebuild: tar xvf core-co-2021-assets.tar.gz && rm core-co-2021-assets.tar.gz && cd online && ./autogen.sh && ./configure --enable-silent-rules --with-lokit-path=/workspace/include --with-lo-path=/workspace/instdir --enable-debug --disable-setcap && cp .gitpod-files/loolwsd-gitpod.xml loolwsd.xml && make -j `nproc`
prebuild: tar xvf core-co-2021-assets.tar.gz && rm core-co-2021-assets.tar.gz && cd online && ./autogen.sh && ./configure --enable-silent-rules --with-lokit-path=/workspace/include --with-lo-path=/workspace/instdir --enable-debug --disable-setcap && cp .gitpod-files/loolwsd-gitpod.xml loolwsd.xml && mkdir .vscode && cp .gitpod-files/settings.json .vscode/settings.json && make -j `nproc`