fix(gitignore): ignore __pycache__ at all depths (#7863)
`/__pycache__/*` only covered the root level. Replace with `**/__pycache__/` so that generated bytecode directories in lib/tools/ and elsewhere are ignored. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
ae085455e3
commit
b7af31d65b
2
.gitignore
vendored
2
.gitignore
vendored
@ -22,7 +22,7 @@ ubuntu-*-cloudimg-console.log
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
*~
|
*~
|
||||||
*.swp
|
*.swp
|
||||||
/__pycache__/*
|
**/__pycache__/
|
||||||
|
|
||||||
# Mainly generated by merge tools like 'meld'
|
# Mainly generated by merge tools like 'meld'
|
||||||
*.orig
|
*.orig
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user