|
|
|
|
|
by burntsushi
2847 days ago
|
|
For ripgrep, you can achieve this via a custom ignore file, e.g., `echo '*.min.js' > .ignore`. Another approach I've seen people take is to put `-M300` in your ripgrep config file, and then any super long lines are automatically omitted from output. |
|
I consider .grepignore to be more comprehensible.