-
Notifications
You must be signed in to change notification settings - Fork 3
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
Add Black Formatter #162
Add Black Formatter #162
Conversation
@DavisRayM lets disable the pylint rule at the affected places in the code. |
- Configure flake8 to play nice with black formatter. More info here https://github.com/psf/black#line-length
e216d12
to
d6a3ba3
Compare
@@ -0,0 +1,3 @@ | |||
[flake8] | |||
max-line-length = 88 |
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.
More details on why i did this here https://github.com/psf/black#line-length
- Silence bad-continuation and duplicate-code pylint errors
d6a3ba3
to
18f1663
Compare
@moshthepitt Should we let black normalize all strings with double quotes. Or should i disable the string normalization ? The PR as is right now normalizes all strings. |
Yes lets let it |
Nice, this now contains the formatted files. Please have a look and review. |
Changes / Features implemented
Side effects of implementing this change
Closes #152