-
Notifications
You must be signed in to change notification settings - Fork 39
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
Lint #1093
Lint #1093
Conversation
What are all the With every linter I use (as far as I can recall), it is possible to be explicit by specifying which linting rule we want to make an exception for. Which I believe is much better for the code quality. By disabling linting completely for the whole line we could hide some actual useful linting warning/errors. It is not proper style from my point of view to disable the whole linter for a line. Seems like it is possible: For example:
|
Yepp, we are using flake8, I should probably have been more specific with the noqa in this case is function complexity so we can disable that rule specifically. |
@marcus-oscarsson Yes, better with disabling only one specific rule, thanks :) |
69c27af
to
ea48a66
Compare
9c093a1
to
ddbcad6
Compare
a5d0e6c
to
8a56a75
Compare
8a56a75
to
66303e2
Compare
Sorry for the messy PR but it was a bit complicated to get things to run properly.
|
Linted and formatted all files.