Files
Claude-Code-Workflow/.gitattributes
catlog22 35485bbbb1 feat: Enhance navigation and cleanup for graph explorer view
- Added a cleanup function to reset the state when navigating away from the graph explorer.
- Updated navigation logic to call the cleanup function before switching views.
- Improved internationalization by adding new translations for graph-related terms.
- Adjusted icon sizes for better UI consistency in the graph explorer.
- Implemented impact analysis button functionality in the graph explorer.
- Refactored CLI tool configuration to use updated model names.
- Enhanced CLI executor to handle prompts correctly for codex commands.
- Introduced code relationship storage for better visualization in the index tree.
- Added support for parsing Markdown and plain text files in the symbol parser.
- Updated tests to reflect changes in language detection logic.
2025-12-15 23:11:01 +08:00

33 lines
554 B
Plaintext

# Auto detect text files and perform LF normalization
* text=auto
# Shell scripts must use LF line endings (Unix style)
*.sh text eol=lf
# Batch/PowerShell scripts can use CRLF (Windows style)
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# Python scripts should use LF
*.py text eol=lf
# Common text files
*.md text
*.txt text
*.json text
*.yaml text
*.yml text
*.toml text
# Binary files (no line ending conversion)
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.zip binary
*.tar binary
*.gz binary
*.pdf binary