List of JavaScript regular expression. If a file path matches any of them, then override
ignore
and don't ignore the path. E.g., if you have several .scss
examples that you don't want to convert, but you do want to convert the main.scss
for the website itself:"ignore": [
".*\\.scss"
]
"dontIgnore": [
"main.scss"
]
Note however that if an upper directory is ignored, then we don't recurse into it, and
dontIgnore
will have no effect.