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