Skip to content

Commit dff7601

Browse files
meta: Add pyproject.toml to include black settings
Signed-off-by: Sayan Chowdhury <[email protected]>
1 parent 73639d4 commit dff7601

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

pyproject.toml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[tool.black]
2+
line-length = 88
3+
target-version = ['py35', 'py36', 'py37']
4+
include = '\.pyi?$'
5+
exclude = '''
6+
/(
7+
\.eggs
8+
| \.git
9+
| \.mypy_cache
10+
| \.tox
11+
| \.venv
12+
| _build
13+
| buck-out
14+
| build
15+
| dist
16+
| settings
17+
| docs
18+
|
19+
)/
20+
'''

0 commit comments

Comments
 (0)