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 2b4995b commit 57484d1Copy full SHA for 57484d1
.flake8
@@ -0,0 +1,4 @@
1
+[flake8]
2
+max-line-length = 80
3
+select = C,E,F,W,B,B950
4
+extend-ignore = E203, E501
pyproject.toml
@@ -30,3 +30,25 @@ black = "^20.8b1"
30
[build-system]
31
requires = ["poetry-core>=1.0.0"]
32
build-backend = "poetry.core.masonry.api"
33
+
34
+[tool.black]
35
+line-length = 88
36
+target-version = ['py38']
37
+include = '\.pyi?$'
38
+exclude = '''
39
40
+(
41
+ /(
42
+ \.eggs
43
+ | \.git
44
+ | \.hg
45
+ | \.mypy_cache
46
+ | \.tox
47
+ | \.venv
48
+ | _build
49
+ | buck-out
50
+ | build
51
+ | dist
52
+ )/
53
+)
54
+'''
0 commit comments