forked from tmux-python/libtmux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
51 lines (50 loc) · 974 Bytes
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[flake8]
exclude = .*/,.tox,*.egg,libtmux/_compat.py,libtmux/__*__.py
select = E,W,F,N
max-line-length = 88
# Stuff we ignore thanks to black: https://github.com/ambv/black/issues/429
ignore = E111,
E121,
E122,
E123,
E124,
E125,
E126,
E201,
E202,
E203,
E221,
E222,
E225,
E226,
E227,
E231,
E241,
E251,
E261,
E262,
E265,
E271,
E272,
E302,
E303,
E306,
E502,
E701,
E702,
E703,
E704,
W291,
W292,
W293,
W391,
W503
[isort]
combine_as_imports= true
default_section = THIRDPARTY
include_trailing_comma = true
multi_line_output = 3
known_pytest = pytest,py
known_first_party = libtmux
sections = FUTURE,STDLIB,PYTEST,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
line_length = 88