代码拉取完成,页面将自动刷新
[flake8]
exclude = h/migrations/versions/*
max-line-length = 160
ignore = \
# Rules that flake8 ignores by default (we have to put these in our `ignore`
# setting otherwise they would be un-ignored).
E121,E123,E126,E226,E24,E704,W503 \
# "whitespace before ':'" conflicts with the Black code formatter.
E203
[pycodestyle]
ignore =
# Disable pycodestyle errors and warnings that we don't care about because
# Black formats our code for us.
E203, # Whitespace before ':',
E231, # Missing whitespace after ',',
E501, # Line too long,
W503, # Line break before binary operator,
# Bare except. PyLint finds these for us so we don't need pycodestyle to.
E722,
[pydocstyle]
ignore =
# Missing docstrings.
D100,D101,D102,D103,D104,D105,D106,D107,
# "No blank lines allowed after function docstring" conflicts with
# the Black code formatter, which insists on inserting blank lines after
# function docstrings.
D202,
# "1 blank line required before class docstring" conflicts with another
# pydocstyle rule D211 "No blank lines allowed before class docstring".
D203,
# Multi-line docstring summary should start at the first line, this
# conflicts with another pycodestyle rule "Multi-line docstring summary
# should start at the second line".
D212,
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。