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
We have IgnoreDirs but should also allow ignoring files. Either:
Add IgnoreFiles config option. Messy when we need to wildcard match things, two implementations needed.
Combine the jobs of directory and file ignore, IgnorePaths, IgnoreDocs... do nice regex matching. Could be more work in code but provides a cleaner 'API'.
The text was updated successfully, but these errors were encountered:
Use case:
Trying to hide google verification files which are missing doctypes (because they're only one line). Workaround for now is to turn off the doctypes check, but would rather have that on for my other 400+ pages and just ignore the verification file.
For this particular issue, the better fix is to go to "alternative methods" and select "HTML tag" which gives you a meta tag to insert into the <head/> section of your templates.
We have
IgnoreDirs
but should also allow ignoring files. Either:IgnoreFiles
config option. Messy when we need to wildcard match things, two implementations needed.IgnorePaths
,IgnoreDocs
... do nice regex matching. Could be more work in code but provides a cleaner 'API'.The text was updated successfully, but these errors were encountered: