Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configure vs-code folders to skip. #5

Draft
wants to merge 1 commit into
base: humble
Choose a base branch
from
Draft
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
25 changes: 15 additions & 10 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,19 +69,24 @@
"*.world": "xml",
"*.xacro": "xml"
},
"search.exclude": {
"./build": true,
"./install": true,
"./log": true,
"./cache": true,

// Exclude folder from vscode analysis.
"files.exclude": {
"build/": true,
"install/": true,
"log/": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/build/*/**": true,
"**/log/*/**": true,
"**/install/*/**": true,
"build/": true,
"install/": true,
"log/": true
},
"search.exclude": {
"build/": true,
"install/": true,
"log/": true
}

// Moves files/folders to the OS trash (recycle bin on Windows) when deleting.
// Disabling this will delete files/folders permanently.
"files.enableTrash": true,
Expand Down