Skip to content

Commit

Permalink
vscode: exclude files from virtme dir
Browse files Browse the repository at this point in the history
No need to watch them, they are auto-generated.

Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
  • Loading branch information
matttbe committed May 9, 2024
1 parent e770c52 commit 22cff53
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion vscode/settings-extra.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"clangd.arguments": [
"-compile-commands-dir=${workspaceFolder}/.virtme/build-clang"
]
],
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/.virtme/**": true
}
}

0 comments on commit 22cff53

Please sign in to comment.