I'd like to get my .ackrc configured so ack doesn't look inside my test/coverage folder. So far I've ended up with this :
--ignore-dir=coverage
This works, but it doesn't feel quite as right as :
--ignore-dir=test/coverage
Problem is the latter doesn't work and test/coverage content is searched.
Am I missing something or is ack not prepared to deal with subdirectories ?