mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
Mark large benchmark data files as binary to filter greps
When doing a git grep (of rust-analyzer or of rust-lang/rust with --recurse-submodules), if the grep happens to match within the large benchmark data files, the resulting long single lines can cause a text pager or editor to slow down and distract from more useful matches. These test data files aren't formatted for human consumption, so mark them as binary, which causes git grep to instead just state that they match without printing the matching "line".
This commit is contained in:
parent
8a82e6c492
commit
dfd28c1764
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -1,4 +1,6 @@
|
||||
* text=auto eol=lf
|
||||
# git grep shouldn't match entries in this benchmark data
|
||||
bench_data/** binary
|
||||
crates/syntax/test_data/** -text eof=LF
|
||||
# Older git versions try to fix line endings on images, this prevents it.
|
||||
*.png binary
|
||||
|
Loading…
Reference in New Issue
Block a user