forked from gevent/gevent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
16 lines (15 loc) · 1.02 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[pep8]
# N801: class names should use CapWords
# N802: function names should be lower-case; comes from Windows funcs
# N803: argument name should be lower-case; comes up with using the class name as a keyword-argument
# N813: camelCase imported as lowercase; socketcommon
# N806: variable in function should be lowercase; but sometimes we want constant-looking names, especially for closures
# N812: lowercase imported as non-lowercase; from greenlet import greenlet as RawGreenlet
# N805: first arg should be self; fails on metaclasses and classmethods; pylint does a better job
ignore=E702,E265,E402,E731,E266,E261,W503,E129,N801,N802,N803,N813,N806,N812,N805
max_line_length=160
exclude=.runtimes,.eggs,.tox,.git,build,2.6,2.7,2.7pypy,3.3,3.5,test_support.py,test_queue.py,patched_tests_setup.py,test_threading_2.py,lock_tests.py,_sslgte279.py,3.4
[flake8]
# F821: undefined name; caught better by pylint, where it can be locally disabled
# F401: imported but unused; better caught by pylint where it can be locally disabled
ignore=F821,F401