v8.7.0
Added 1
- Add flag --no-require-git to always respect gitignore files
Fixed 1
- Fix logic for when to use global ignore file where it was not processed in certain conditions without --no-ignore, --unrestricted, or --no-global-ignore-file flags
Features
- Add flag --no-require-git to always respect gitignore files, see #1216 (@vegerot)
Bugfixes
- Fix logic for when to use global ignore file. There was a bug where the only case where the
global ignore file wasn't processed was if
--no-ignorewas passed, but neither--unrestrictednor--no-global-ignore-fileis passed. See #1209