Commit | Line | Data |
---|---|---|
31976fe2 | 1 | [tool.black] |
31976fe2 JR |
2 | include = ''' |
3 | ( | |
4 | \.pyi?$ | |
5 | | \.py\.in$ | |
6 | ) | |
7 | ''' | |
8 | exclude = ''' | |
9 | ( | |
c211d9c0 FD |
10 | src/bindings/python/bt2/build/ |
11 | | src/bindings/python/bt2/setup\.py$ | |
12 | | src/bindings/python/bt2/bt2/native_bt\.py$ | |
07041daf | 13 | | src/bindings/python/bt2/bt2/version\.py$ |
e612fc1e | 14 | | tests/utils/python/normand\.py$ |
7747a39f | 15 | | tests/utils/python/typing/typing\.py$ |
bf5361e9 | 16 | | tests/utils/python/tap |
31976fe2 JR |
17 | |
18 | ) | |
19 | ''' | |
5995b304 SM |
20 | |
21 | [tool.isort] | |
22 | profile = "black" | |
e8f4ebf5 SM |
23 | extend_skip_glob = [ |
24 | "tests/utils/python/tap", | |
e612fc1e | 25 | "tests/utils/python/normand.py", |
7747a39f | 26 | "tests/utils/python/typing/typing.py", |
e8f4ebf5 | 27 | ] |
5995b304 | 28 | length_sort = true |