Files
crabrl/.gitattributes
Stefano Amorelli 46ecbd2635 feat: implement CLI for XBRL parsing and validation
- Parse command with optional stats flag
- Validate command with SEC EDGAR profile support
- Benchmark command for performance testing
- Colored output for better UX
2025-08-16 17:25:06 +03:00

55 lines
927 B
Plaintext

# Auto detect text files and perform LF normalization
* text=auto
# Rust files
*.rs text eol=lf
*.toml text eol=lf
Cargo.lock text eol=lf
# Python files
*.py text eol=lf
*.pyx text eol=lf
*.pxd text eol=lf
# Documentation
*.md text eol=lf
*.txt text eol=lf
LICENSE text eol=lf
# Config files
*.json text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.xml text eol=lf
*.xsd text eol=lf
*.xbrl text eol=lf
# Shell scripts
*.sh text eol=lf
*.bash text eol=lf
# Git files
.gitignore text eol=lf
.gitattributes text eol=lf
# Binary files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.pdf binary
*.zip binary
*.gz binary
*.tar binary
*.7z binary
*.exe binary
*.dll binary
*.so binary
*.dylib binary
# Linguist overrides - ensure Rust is recognized as primary language
*.rs linguist-language=Rust
benchmarks/*.py linguist-documentation
scripts/*.py linguist-documentation
examples/* linguist-documentation