moodymudskipper / debugverse

Brainstorming ideas for debugging workflow and tools, not a package (yet ?)
1 stars 0 forks source link

check that the build ignore file doesn't contain a dangerous regex #25

Open moodymudskipper opened 2 years ago

moodymudskipper commented 2 years ago

For instance we might have a line foo to ignore the full foo folder, but it will also ignore somefoothing.R, which might be dangerous.

We might warn if such instances are found, and if they're really what the user wants they might use ^.*foo.*$

The rule might be that we want either ^ at the start of $ in the end or both.