Skip to content

Commit

Permalink
add pyproject.toml for black config
Browse files Browse the repository at this point in the history
  • Loading branch information
madprime committed Feb 14, 2019
1 parent 34ed44c commit 2c132ad
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[tool.black]
line-length = 88
py36 = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| migrations
| static-files
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
)/
'''

0 comments on commit 2c132ad

Please sign in to comment.