mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-09 04:52:23 +08:00
A new shade of Black (#11362)
This commit is contained in:
10
.flake8
10
.flake8
@@ -14,10 +14,10 @@
|
||||
# E302 expected 2 blank lines
|
||||
# E305 expected 2 blank lines
|
||||
# E501 line too long
|
||||
# E701 Multiple statements on one line (colon) -- disallows "..." on the same line
|
||||
|
||||
# Some rules are considered irrelevant to stub files:
|
||||
# B All flake8-bugbear rules are .py-specific
|
||||
# E701 multiple statements on one line (colon) -- disallows "..." on the same line
|
||||
# F401 imported but unused -- does not recognize re-exports
|
||||
# https://github.com/PyCQA/pyflakes/issues/474
|
||||
|
||||
@@ -27,18 +27,18 @@
|
||||
# F405 defined from star imports
|
||||
|
||||
[flake8]
|
||||
extend-ignore = A, D, N8, SIM, RST, TYP, E301, E302, E305, E501
|
||||
extend-ignore = A, D, N8, SIM, RST, TYP, E301, E302, E305, E501, E701
|
||||
per-file-ignores =
|
||||
*.py: E203
|
||||
*.pyi: B, E701, E741, F401, F403, F405
|
||||
*.pyi: B, E741, F401, F403, F405
|
||||
# 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
|
||||
stdlib/typing.pyi: B, E741, F401, F403, F405, F811
|
||||
# Generated protobuf files include docstrings,
|
||||
# and import some things from typing_extensions that could be imported from typing
|
||||
*_pb2.pyi: B, E701, E741, F401, F403, F405, Y021, Y023, Y026, Y053, Y054
|
||||
*_pb2.pyi: B, E741, F401, F403, F405, Y021, Y023, Y026, Y053, Y054
|
||||
|
||||
exclude = .venv*,.git
|
||||
noqa_require_code = true
|
||||
|
||||
Reference in New Issue
Block a user