Skip to content
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

Enable some previously disabled pylint rules #194

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

twizmwazin
Copy link
Member

Justifications for each of these:

  • abstract-method: This applies when an abstract method is not overridden in a child class but that class is not marked as being abstract itself. This seems like something we would want?
  • len-as-condition: The argument is basically if you are only doing len(thing) as a condition, you should just use thing directly. Seems valid to me.
  • no-else-return: Already covered by ruff
  • protected-access: This one will probably show up a lot but this is something I believe we should actively be looking to correct when possible.
  • unidiomatic-typecheck: Covered by ruff already in some repos, seems like a good rule.
  • consider-using-f-strong: Covered by ruff already

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant