a b/pyproject.toml
1
[tool.black]
2
line-length = 88
3
target-version = ['py312']
4
include = '\.pyw?$'
5
extend-exclude = '''
6
# A regex preceded with ^/ will apply only to files and directories
7
# in the root of the project.
8
^/tests/data/
9
'''
10
force-exclude = '''
11
\.ipynb$
12
'''
13
14
[tool.black.format]
15
skip-string-normalization = false
16
skip-magic-trailing-comma = false