What is the problem or limitation you are having?
When Ruff was enabled, some errors were globally ignored, with the intention of resolving them in subsequent PRs.
Describe the solution you'd like
This repo currently ignores the following rules from the EXXX series:
E501
debugger (note this has its own pyproject.toml file)
tests/integrations
tests/platforms
Work through the issues as follows:
- Comment out the error number in the pyproject.toml file
ignore list.
- Run
pre-commit run -a to run the checks.
- Work through each of the errors in the result until they are all resolved.
pre-commit run -a should pass without the errors in the ignore list.
- Remove the
E501 rule from the ignore list.
- If this is the last of the errors in the
ignore list, remove the ignore list completely, including the comment above.
- Submit the PR.
Any ignore items not mentioned above should remain ignored. Do not do anything about these items.
What is the problem or limitation you are having?
When Ruff was enabled, some errors were globally ignored, with the intention of resolving them in subsequent PRs.
Describe the solution you'd like
This repo currently ignores the following rules from the
EXXXseries:E501debugger(note this has its own pyproject.toml file)tests/integrationstests/platformsWork through the issues as follows:
ignorelist.pre-commit run -ato run the checks.pre-commit run -ashould pass without the errors in theignorelist.E501rule from theignorelist.ignorelist, remove theignorelist completely, including the comment above.Any
ignoreitems not mentioned above should remain ignored. Do not do anything about these items.