aboutsummaryrefslogtreecommitdiff
path: root/python/pyproject.toml
blob: 720f60d589c9bacb863d4594b58e3000f914ee94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[tool.black]
line-length = 120
exclude = '''
(
  /(
      \.eggs         # exclude a few common directories in the
    | \.git          # root of the project
    | \.mypy_cache
    | \.venv
    | \.vscode
    | \.pytest_cache
    | build
  )
)
'''