-
Notifications
You must be signed in to change notification settings - Fork 11
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
Ignore unused imports #79
Comments
Ideally users would be able to ignore |
good idea - interested in submitting a pr? |
It seems like cython-lint might need a way to ignore violations raised by cython-lint itself (as opposed to pycodestyle) which seems like it could be a lot of scope. That would require naming a code for existing violations, unless you want to do something like add a flag for every violation (e.g. |
either sounds good! just fyi for now I'd expect that |
In flake8, users can ignore
F401
to avoid warning about unused imports. I triedcython-lint --ignore F401
but it seems to do nothing. From the source of cython-lint, it doesn't seem like there is a way to disable this check right now.cython-lint/cython_lint/cython_lint.py
Line 744 in 0afd546
The text was updated successfully, but these errors were encountered: