mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-09 13:02:22 +08:00
This was introduced in a recent version (so it doesn't affect us right now but will if we upgrade the flake8 version used in tests). It gives errors like: ``` /home/travis/build/ambv/flake8-pyi/.tox/typeshed/tmp/typeshed/stdlib/3/re.pyi:21:9: E741 ambiguous variable name 'I' /home/travis/build/ambv/flake8-pyi/.tox/typeshed/tmp/typeshed/stdlib/3/re.pyi:39:5: E741 ambiguous variable name 'I' /home/travis/build/ambv/flake8-pyi/.tox/typeshed/tmp/typeshed/stdlib/3/re.pyi:58:5: E741 ambiguous variable name 'I' /home/travis/build/ambv/flake8-pyi/.tox/typeshed/tmp/typeshed/third_party/2/OpenSSL/crypto.pyi:43:5: E741 ambiguous variable name 'O' ``` These aren't useful for typeshed, because regardless of whether it's good style, these libraries really do contain variables named `I` and `O`.
23 lines
998 B
INI
23 lines
998 B
INI
# Some PEP8 deviations are considered irrelevant to stub files:
|
|
# (error counts as of 2017-05-22)
|
|
# 17952 E704 multiple statements on one line (def)
|
|
# 12197 E301 expected 1 blank line
|
|
# 7155 E302 expected 2 blank lines
|
|
# 2307 E501 line too long
|
|
# 1463 F401 imported but unused
|
|
# 967 E701 multiple statements on one line (colon)
|
|
# 457 F811 redefinition
|
|
# 390 E305 expected 2 blank lines
|
|
|
|
# Nice-to-haves ignored for now
|
|
# 159 E128 continuation line under-indented for visual indent
|
|
# 34 E127 continuation line over-indented for visual indent
|
|
|
|
[flake8]
|
|
ignore = F401, F403, F405, F811, E127, E128, E301, E302, E305, E501, E701, E704, E741, B303
|
|
# We are checking with Python 3 but many of the stubs are Python 2 stubs.
|
|
# A nice future improvement would be to provide separate .flake8
|
|
# configurations for Python 2 and Python 3 files.
|
|
builtins = StandardError,apply,basestring,buffer,cmp,coerce,execfile,file,intern,long,raw_input,reduce,reload,unichr,unicode,xrange
|
|
exclude = .venv*,@*
|