Open moodymudskipper opened 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.
foo
somefoothing.R
We might warn if such instances are found, and if they're really what the user wants they might use ^.*foo.*$
^.*foo.*$
The rule might be that we want either ^ at the start of $ in the end or both.
^
$
For instance we might have a line
foo
to ignore the fullfoo
folder, but it will also ignoresomefoothing.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.