GENIUS-130: OF Tunnels support For ITM Direct Tunnels (of-tunnels)
[integration/test.git] / .flake8
1 [flake8]
2 show-source = True
3 max-line-length = 120
4
5 # # - Select E121, E123, E126, E226, E241, E242 and E704 which are turned OFF
6 # #   by default but represent guidelines accepted by us.
7 # # - Do not select E133 because it is incompatible with E123 which was
8 # #   selected instead.
9 # - It turns out that now all checks except E133 are enabled so the select
10 #   can be simplified to be just "E,W". However a new version could change
11 #   that (select E133 instead of E123) but that should be caught by the
12 #   verify job.
13 select = E,W
14
15 # E203,E501,W503 are disabled as recommended by python-black.
16 ignore = E203,E501,W503
17 exclude =
18     .git,
19     .tox