-
-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does not act on all files? (Despite lack of "filename: ..." and "exclude: ...") #4
Comments
@moseb thanks for reaching out. I have an idea why your expression behaves that way. Relint matches the whole file, not line by line. This is the case, so people can write multi line expression. Best, |
There is
Would adding |
As a result, in a pattern ^ and $ are now matching start and end of the line, not just start and end of the string.
I have a weird problem here that maybe you have an idea about.
I'm tryint to find uses of
mock
where it should beunittest.mock
for Python, instead.So I have:
For config. Now it gets interesting:
So why are only 4 out of those 74 matches found by relint — any ideas?
The text was updated successfully, but these errors were encountered: