1[flake8]
2exclude = .*/,.tox,*.egg,tmuxp/_compat.py,tmuxp/__*__.py,
3select = E,W,F,N
4max-line-length = 88
5ignore = E111,
6	E121,
7	E122,
8	E123,
9	E124,
10	E125,
11	E126,
12	E201,
13	E202,
14	E203,
15	E221,
16	E222,
17	E225,
18	E226,
19	E227,
20	E231,
21	E241,
22	E251,
23	E261,
24	E262,
25	E265,
26	E271,
27	E272,
28	E302,
29	E303,
30	E306,
31	E502,
32	E701,
33	E702,
34	E703,
35	E704,
36	W291,
37	W292,
38	W293,
39	W391,
40	W503
41
42[tool:pytest]
43addopts = --reruns=5
44
45[isort]
46combine_as_imports = true
47default_section = THIRDPARTY
48include_trailing_comma = true
49multi_line_output = 3
50known_pytest = pytest,py
51known_first_party = libtmux,tmuxp
52sections = FUTURE,STDLIB,PYTEST,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
53line_length = 88
54
55[egg_info]
56tag_build =
57tag_date = 0
58
59