[tool.black]
line-length = 79
target-version = ['py38']

exclude = '''
(
  /(
      \.eggs         # exclude a few common directories in the
    | \.git          # root of the project
    | \.hg
    | \.mypy_cache
    | \.tox
    | \.venv
    | _build
    | buck-out
    | build
    | dist
    | \.pytest_cache
    | \.node_modules
    | assets
    | doc
    | config
  )/
  | foo.py           # also separately exclude a file named foo.py in
                     # the root of the project
)
'''
