You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
E, F, W: These are the standard flake8 checks, classic checks that have stood the test of time. Not required if you use extend-select (W not needed if you use a formatter)
The reason will be displayed to describe this comment to others. Learn more.
For some reason, the GitHub website isn't working for me (quote reply and reference in new issue do nothing). I'll troubleshoot that later. In the meantime, I committed b00e9dd for the W rules.
For C901 vs C90, I don't have any opinion. Let's leave it unchanged until it has a meaningful effect.
d1c5444
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.
Hmm. I'm now beginning to think this change disabled the default checks :(.
d1c5444
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.
@jaraco Note that
W
rules are redundant when using a formatter (the ruff formatter?). At least that's what the Scientific Python Library Development Guide suggests, I haven't checked for myself:d1c5444
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.
Perhaps change
C901
→C90
? It's currently equivalent, since theC90
ruleset contains the singleC901
rule.d1c5444
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.
For some reason, the GitHub website isn't working for me (quote reply and reference in new issue do nothing). I'll troubleshoot that later. In the meantime, I committed b00e9dd for the W rules.
For C901 vs C90, I don't have any opinion. Let's leave it unchanged until it has a meaningful effect.