exclude symlinked ("roles" and "resources") dirs from vscode search

Also remove the ".vscode" directory from the ".gitignore" as the repo
includes stuff in it.
This commit is contained in:
June 2024-12-05 23:32:01 +01:00
parent 63390c5588
commit e713b2ea5b
Signed by: june
SSH key fingerprint: SHA256:o9EAq4Y9N9K0pBQeBTqhSDrND5E7oB+60ZNx0U1yPe0
2 changed files with 6 additions and 1 deletions

1
.gitignore vendored
View file

@ -1 +0,0 @@
.vscode

6
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,6 @@
{
"search.exclude": {
"/playbooks/roles/": true,
"/playbooks/resources/": true,
},
}