-
Notifications
You must be signed in to change notification settings - Fork 2
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
#5: Move Pylint config to .pylintrc.toml, remove default config values #11
#5: Move Pylint config to .pylintrc.toml, remove default config values #11
Conversation
"redefined-builtin", | ||
"import-outside-toplevel", | ||
"no-else-return", | ||
"unspecified-encoding", |
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.
It is a bad practice to open
file without encoding. Any example when this check should be ignored?
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.
Any example when this check should be ignored?
No, I can't suppose/guess
"import-outside-toplevel", | ||
"no-else-return", | ||
"unspecified-encoding", | ||
"duplicate-code", |
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.
Remove this from ignore? It is better to explicitly mark duplicated code for ignoring
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 agree, thank you.
"no-else-return", | ||
"unspecified-encoding", | ||
"duplicate-code", | ||
"super-with-arguments", |
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.
Is it useful to ignore?
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.
Hm, I guess no - it would be better to get an error and take care of ignoring this rule if needed
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.
Hm, could you describe me reasons that helped you to made a desicion to create .pylintrc.toml
from pyproject.toml
?
Sure. Initial |
@nifadyev, rebase it, please :) |
2fb5367
to
31c0631
Compare
Related to #5