The problem
The characters " and ' need to be escaped in the exclude files. Given that these are not special characters in Regex there is no reason why a user should need to do this
The solution
Not escaping " and ' should work
Example
Lets say that I have a file that looks like this:
password=123259807534
password2="4401259804330"
And none of these are actually secrets. To solve this, I might want to exclude these lines with something like:
But this will not work. A user will instead need to do:
Which is not at all intuitive.
The problem
The characters
"and'need to be escaped in the exclude files. Given that these are not special characters inRegexthere is no reason why a user should need to do thisThe solution
Not escaping
"and'should workExample
Lets say that I have a file that looks like this:
And none of these are actually secrets. To solve this, I might want to exclude these lines with something like:
But this will not work. A user will instead need to do:
Which is not at all intuitive.