Skip to content

Commit

Permalink
ignored .DS_Store file (used by macOS to store custom attributes and …
Browse files Browse the repository at this point in the history
…metadata for a folder)
  • Loading branch information
Evgeny Aleshin committed Nov 14, 2024
1 parent 4e33620 commit 5374281
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion claude-pyrojects/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def initialize_ignore_file(self):
if not os.path.exists(self.ignore_file):
default_content = ('ignore_folders=[".venv", ".idea", ".vscode"]\n'
'ignore_file_extensions=["pdf", "jpg", "png", "pyc"]\n'
'ignore_name_includes=["claude_pyrojects"]')
'ignore_name_includes=["claude_pyrojects", ".DS_Store"]')
with open(self.ignore_file, 'w') as f:
f.write(default_content)
print(f"{self.ignore_file} created with default values.")
Expand Down

0 comments on commit 5374281

Please sign in to comment.