We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73ec64c commit f081580Copy full SHA for f081580
.flake8
@@ -1,5 +1,7 @@
1
# https://flake8.pycqa.org/en/latest/user/configuration.html#configuration-locations
2
+# +
3
+# https://github.com/psf/black/blob/master/docs/the_black_code_style.md#line-length
4
[flake8]
-ignore =
- # don't care about line length.
5
- E501
+# black wraps at 88
6
+max-line-length = 90
7
+extend-ignore = E203
.pre-commit-config.yaml
@@ -76,3 +76,5 @@ repos:
76
rev: 20.8b1
77
hooks:
78
- id: black
79
+ args:
80
+ - --skip-string-normalization
0 commit comments