X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=pyproject.toml;h=2b8c201e44e93f8840d8d2f677926c8e50136c82;hp=e752724a284ca1b4756b3b90e15cb9b4177cc05a;hb=HEAD;hpb=c211d9c0bd47b374497451a4fa6aa6b20ac4fa8b diff --git a/pyproject.toml b/pyproject.toml index e752724a..fb033ec7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,4 @@ [tool.black] - skip-string-normalization = true include = ''' ( \.pyi?$ @@ -11,7 +10,19 @@ src/bindings/python/bt2/build/ | src/bindings/python/bt2/setup\.py$ | src/bindings/python/bt2/bt2/native_bt\.py$ - | src/bindings/python/bt2/bt2/__init__\.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