Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@
"customizations": {
"vscode": {
"settings": {
"git.ignoredRepositories": ["."],
"files.exclude": {
"**/.vscode": true,
"**/.devcontainer": true,
"**/.git": true,
"**/.github": true,
"**/.gitignore": true,
"**/.gitpod.Dockerfile": true,
"**/.gitpod.yml": true,
"**/.markdownlint-cli2.yaml": true,
"**/.pre-commit-config.yaml": true,
"**/Dockerfile": true,
"**/mkdocs.yml": true,
"**/scripts": true
},
"editor.tabSize": 8,
"editor.indentSize": 4,
"editor.detectIndentation": false,
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ R-devel.tar.gz
/venv
.cache/
.Rproj.user
.vscode/
58 changes: 0 additions & 58 deletions reinstall-cmake.sh

This file was deleted.

2 changes: 1 addition & 1 deletion scripts/localscript.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ cat $WORK_DIR/scripts/welcome_msg.sh >> ~/.bashrc
#bash ~/.bashrc

# Remove git directory if it exists
rm -rf .git
#rm -rf .git

# copying vscode extension settings from devcontainer json to vscode settings json using jq
if [ -f "$DEVCONTAINER_JSON" ]; then
Expand Down