Closed mcandre closed 11 years ago
We already ignore minified javascript and CSS by default.
--ignore-file=match:/[.]min[.]js$/
--ignore-file=match:/[.]js[.]min$/
--ignore-file=match:/[.]min[.]css$/
--ignore-file=match:/[.]css[.]min$/
Should we expand that initial dot to include -
as well?
Simply using --ignore-file=match:min\.js
would ignore theremin.js
or webmin.js
or webmin.jsintro.html
.
Should we expand that initial dot to include - as well?
Yes, I think so. The majority convention for minified files is blahblahblah.min.js
, but a few libraries such as Backbone use blahblahblah-min.js
.
Fixsed in rev d4152d0.
It would also be helpful to ignore minified JavaScript such as
jquery-x.y.z.min.js
andbackbone-min.js
using--ignore-file=match:min\.js
.