exclude symlinked ("roles" and "resources") dirs from vscode search
All checks were successful
/ Ansible Lint (push) Successful in 1m41s
/ Ansible Lint (pull_request) Successful in 1m34s

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 fa22ce52a0
commit e152143c41
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,
},
}