mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-05 01:50:27 +08:00
- Implemented unit tests for the Tokenizer class, covering various text inputs, edge cases, and fallback mechanisms. - Created performance benchmarks comparing tiktoken and pure Python implementations for token counting. - Developed extensive tests for TreeSitterSymbolParser across Python, JavaScript, and TypeScript, ensuring accurate symbol extraction and parsing. - Added configuration documentation for MCP integration and custom prompts, enhancing usability and flexibility. - Introduced a refactor script for GraphAnalyzer to streamline future improvements.
33 lines
563 B
Plaintext
33 lines
563 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
|
|
.mcp.json |