You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to be able to read a list of patterns to ignore from the CLI or from a .ejslintignore file. I have a workload which runs ejs-lint on a directory containing multiple files, and the tool breaks when the directory includes a .png file, as the binary data in the file happens to contain <%, which causes ejs-lint to try to parse the following data as a scriptlet, which fails. I would be happy to create a PR to implement this
The text was updated successfully, but these errors were encountered:
Not all of my template files end in .ejs. I maintain an internal templating system based on Yeoman to template out a bunch of files, and it would be cumbersome to modify Yeoman's templating to automatically rename files ending in .ejs. I use ejs-lint to validate these templates. Additionally, there are several templates which use my templating system, and I would have to update all of those as well to find every file with EJS templating in it and add the .ejs extension
It would be nice to be able to read a list of patterns to ignore from the CLI or from a .ejslintignore file. I have a workload which runs ejs-lint on a directory containing multiple files, and the tool breaks when the directory includes a .png file, as the binary data in the file happens to contain
<%
, which causes ejs-lint to try to parse the following data as a scriptlet, which fails. I would be happy to create a PR to implement thisThe text was updated successfully, but these errors were encountered: