1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
[tool.black]
include = '''
(
\.pyi?$
| \.py\.in$
)
'''
exclude = '''
(
src/bindings/python/bt2/build/
| src/bindings/python/bt2/setup\.py$
| src/bindings/python/bt2/bt2/native_bt\.py$
| src/bindings/python/bt2/bt2/version\.py$
| tests/utils/python/normand\.py$
| tests/utils/python/typing/typing\.py$
| tests/utils/python/tap
)
'''
[tool.isort]
profile = "black"
extend_skip_glob = [
"tests/utils/python/tap",
"tests/utils/python/normand.py",
"tests/utils/python/typing/typing.py",
]
length_sort = true
|