We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e2d8b3 commit 934efd9Copy full SHA for 934efd9
src/codegen/cli/workspace/initialize_workspace.py
@@ -108,18 +108,12 @@ def modify_gitignore(codegen_folder: Path):
108
"codegen-system-prompt.txt",
109
"",
110
"# Python cache files",
111
- "__pycache__/",
+ "**/__pycache__/",
112
"*.py[cod]",
113
"*$py.class",
114
"*.txt",
115
"*.pyc",
116
117
- "# Keep codemods",
118
- "!codemods/",
119
- "!codemods/**",
120
- "",
121
- "# Explicitly ignore pycache in excluded codemod directory",
122
- "codemods/**/__pycache__/",
123
]
124
125
# Write or update .gitignore
0 commit comments