X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=pyproject.toml;h=fb033ec7f387586b225e0f14c63fa4215dbc7c53;hb=385ef9f1227c3cc2aaddf7abdbdc69f89a0272cb;hp=2b8c201e44e93f8840d8d2f677926c8e50136c82;hpb=07041dafaae18146e189a70c33a8a0695cbdd813;p=babeltrace.git diff --git a/pyproject.toml b/pyproject.toml index 2b8c201e..fb033ec7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,4 @@ [tool.black] - skip-string-normalization = true include = ''' ( \.pyi?$ @@ -12,7 +11,18 @@ | 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