mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-17 23:34:13 +08:00
Bump flake8-pyi to 23.5.0; re-enable F821 (#10143)
This commit is contained in:
10
.flake8
10
.flake8
@@ -36,14 +36,16 @@
|
||||
extend-ignore = A, D, N8, SIM, RST, TYP, E301, E302, E305, E501
|
||||
per-file-ignores =
|
||||
*.py: E203
|
||||
*.pyi: B, E701, E741, F401, F403, F405, F821, F822
|
||||
*.pyi: B, E701, E741, F401, F403, F405, F822
|
||||
# Since typing.pyi defines "overload" this is not recognized by flake8 as typing.overload.
|
||||
# Unfortunately, flake8 does not allow to "noqa" just a specific error inside the file itself.
|
||||
# https://github.com/PyCQA/flake8/issues/1079
|
||||
# F811 redefinition of unused '...'
|
||||
stdlib/typing.pyi: B, E701, E741, F401, F403, F405, F811, F821, F822
|
||||
stdlib/typing.pyi: B, E701, E741, F401, F403, F405, F811, F822
|
||||
# Generated protobuf files include docstrings
|
||||
*_pb2.pyi: B, E701, E741, F401, F403, F405, F821, F822, Y021, Y026, Y053, Y054
|
||||
# *_pb2.pyi: B, E701, E741, F401, F403, F405, F822, Y021, Y026, Y053, Y054
|
||||
|
||||
exclude = .venv*,.git
|
||||
# TODO: Re-enable flake8 on generated protobuf files
|
||||
# after https://github.com/nipunn1313/mypy-protobuf/issues/523 is resolved
|
||||
exclude = .venv*,.git,*_pb2.pyi
|
||||
noqa_require_code = true
|
||||
|
||||
Reference in New Issue
Block a user