lib: remove some unnecessary uses of `GString`
[babeltrace.git] / pyproject.toml
... / ...
CommitLineData
1[tool.black]
2 include = '''
3 (
4 \.pyi?$
5 | \.py\.in$
6 )
7 '''
8 exclude = '''
9 (
10 src/bindings/python/bt2/build/
11 | src/bindings/python/bt2/setup\.py$
12 | src/bindings/python/bt2/bt2/native_bt\.py$
13 | src/bindings/python/bt2/bt2/version\.py$
14 | tests/utils/python/normand\.py$
15 | tests/utils/python/typing/typing\.py$
16 | tests/utils/python/tap
17
18 )
19 '''
20
21[tool.isort]
22profile = "black"
23extend_skip_glob = [
24 "tests/utils/python/tap",
25 "tests/utils/python/normand.py",
26 "tests/utils/python/typing/typing.py",
27]
28length_sort = true
This page took 0.023359 seconds and 5 git commands to generate.