I minify javascript files on the fly and produce a .min.js file beside the existing file. This is a problem though when using ack as it treats these as .js files and searches them littering my results screen with minified javascript.
I've tried adding this to my .ackrc with no luck:
--type-set=minjs=.min.js
--nominjs
Is there any way to get ack to ignore this type of extension?
PS I do not have the option of simply renaming .min.js to .min_js or any other variation.