-
Notifications
You must be signed in to change notification settings - Fork 38
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
Reduce ruff warnings #778
Reduce ruff warnings #778
Conversation
Based on the below warnings emitted in CI: warning: The top-level linter settings are deprecated in favour of their counterparts in the `lint` section. Please update the following options in `pyproject.toml`: - 'extend-per-file-ignores' -> 'lint.extend-per-file-ignores' warning: `incorrect-blank-line-before-class` (D203) and `no-blank-line-before-class` (D211) are incompatible. Ignoring `incorrect-blank-line-before-class`. warning: `multi-line-summary-first-line` (D212) and `multi-line-summary-second-line` (D213) are incompatible. Ignoring `multi-line-summary-second-line`.
via `pre-commit run --all-files`
docs/CHANGELOG.md
Outdated
../CHANGELOG.md |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What changed here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll revert that second commit.
My pre-commit
(on Windows) added newlines to the end of the symlink "files", e.g. compare this with this (if you select all, you see the extra character)
But more importantly, as on macOS, pre-commit didn't do the same, and it's just a symlink, it's not worth it, hence the revert.
This reverts commit 143c3ac.
"D203", # incorrect-blank-line-before-class | ||
"D213", # multi-line-summary-second-line |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Were there previously errors that these were catching? Main is clean in terms of lints?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So these two were already ignored, because they are conficting two other rules (and hence would catch "errors" if they were active), as the below warning within the CI runs states (e.g. here):
- 'extend-per-file-ignores' -> 'lint.extend-per-file-ignores'
warning: `incorrect-blank-line-before-class` (D203) and `no-blank-line-before-class` (D211) are incompatible. Ignoring `incorrect-blank-line-before-class`.
warning: `multi-line-summary-first-line` (D212) and `multi-line-summary-second-line` (D213) are incompatible. Ignoring `multi-line-summary-second-line`.
Therefore it comes down to your preference:
- Do you want an extra newline between class definition and docstring? (D203 vs D211)
- Within the docstring, do you want the summary line to start on the first or second line? (D212 vs D213)
In this commit I made the choices so that the existing codebase still passes. If you were to invert either or both of them, then that would require an (automatic) edit all the docstrings elsewhere too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh... I see.
- Prefer no extra newline between class def and docstring
- Prefer summary line on the first line (d212)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Then I think it's all OK:
- the repo is already following these preferences
- D203 and D213 would have gone against these preferences -- but they were already ignored as they were conflicting with their opposite rules -- but now with this PR, there won't even be a warning emitted about this clash.
Thank you! |
nit: minor changes to clean up ruff / pre-commit output