We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
pyflakes only detects things that are actually code errors (well... mostly), and it's pretty fast. Should add this in the future.
I think I would have it separate from the tests, as most of the things that pyflakes catches are things that are almost certainly errors.
The text was updated successfully, but these errors were encountered:
Note that pyflakes will emit warnings such as these too:
tests/pyfrc_test.py:6:1: 'from pyfrc.tests import *' used; unable to detect undefined names tests/pyfrc_test.py:6:1: 'pyfrc.tests.*' imported but unused
flake8 assigns those error codes F403 and F401 respectively. ruff emits the first error, but not the second for some reason (which is probably a bug).
flake8
ruff
Sorry, something went wrong.
No branches or pull requests
pyflakes only detects things that are actually code errors (well... mostly), and it's pretty fast. Should add this in the future.
I think I would have it separate from the tests, as most of the things that pyflakes catches are things that are almost certainly errors.
The text was updated successfully, but these errors were encountered: