-
Notifications
You must be signed in to change notification settings - Fork 35
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
doesn't respect ignore-pattern
in pyproject.toml
#169
Comments
@DanielNoord is there a way to know where the settings are loaded from? Debugging through the pylint code it seems to find the |
With |
@DetachHead which version of |
@DetachHead the logs from Output > pylint panel should have details on which version was loaded: |
|
Could you try |
ok i have no clue what's going on here. the plugin is somehow using version 2.14.5 even though it's running from the exact same venv where i updated it to 2.15.0:
but on the output tab:
|
@DetachHead It is loading from the bundle. Can you set the |
@karthiknadig thanks. now it's using the correct version (2.15.0) but it's still showing errors in |
Sorry @DetachHead, should have recognised this. This is a "duplicate" of pylint-dev/pylint#5398. We're compromising here and haven't found a good solution to fix this (other than just switching to glob patterns and making a breaking change). @karthiknadig This is a |
@DanielNoord @karthiknadig i don't think this is the same issue. i removed the [tool.pylint.MASTER]
ignore-patterns = '.*pyi' |
The This could be solved by adding a ignore patterns check in this block: |
1 similar comment
The This could be solved by adding a ignore patterns check in this block: |
looks like there's already a PR for this pylint-dev/pylint#7220 |
Sorry for the confusion. That does indeed seem to be the issue. I'll take a look at getting that PR merged today! |
The PR has been merged and should be available in the next patch release. I expect that release to come somewhere next week! Edit: Note that the issue with using |
thanks! interestingly, my ignore pattern with the |
Thanks for getting back to this in the other issues in our repository! 😄 |
Hello. Could you please also check if this is fixed for using ignore = ["some_fille.py"]? |
it's working. problem was in "some_file.py", I was using relative path "folder/some_file.py" instead of "some_file.py". |
The text was updated successfully, but these errors were encountered: