scotch / angular-brunch-seed

AngularJS + Brunch
Other
228 stars 78 forks source link

conventions.ignored does not contain default pattern #55

Closed pokehanai closed 11 years ago

pokehanai commented 11 years ago
   ignored: /^(vendor.*\.less|.+node_modules.+|.+_.+\.+)$/

the last one will match against "contains _ and ends with period(s)".

   ignored: /(^vendor\/.*\.less$)|(^|\/)node_modules\/|(^|\/)_/

would be better.