确认排除类型为“.min.js”的文件
我动态缩小 javascript 文件,并在现有文件旁边生成一个 .min.js 文件。不过,当使用 ack 时,这是一个问题,因为它会将这些文件视为 .js 文件,并使用缩小的 JavaScript 在我的结果屏幕上搜索它们。
我尝试将其添加到我的 .ackrc 中,但没有成功:
--type-set=minjs=.min.js
--nominjs
有没有办法让 ack 忽略这种类型的扩展?
PS 我无法选择简单地将 .min.js 重命名为 .min_js 或任何其他变体。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它看起来像是 App::Ack::filetypes 中的限制。
正则表达式是:
那个“.”其中将阻止匹配之前的任何内容。
It looks like a limitation in App::Ack::filetypes.
The regular expression is:
That "." in there is going to block from matching anything previous.
Ack 会忽略 min.js 文件自版本 1.96 起,因此只需进行简单升级即可窍门。
您无需设置任何选项。默认情况下会发生忽略。
Ack ignores min.js files as of version 1.96, so a simple upgrade will do the trick.
There is no option you need to set. The ignoring happens by default.