Restore forked ipaddr library
[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 ignore = E722,W503 # as of aprox 10/25 some update/change has caused existing code to fail on E722
15 exclude =
16     .git,
17     .tox,
18     docs/conf.py