我在项目中使用wemake-python-styleguide linter。我有一个项目范围的setup.cfg文件,如下所示:[flake8]# Base flake8 configuration:format = wemakeshow-source = Truestatistics = Truedoctests = False# Plugins:min-name-length = 1max-returns = 2max-arguments = 4max-complexity = 6max-line-length = 80# Self settings:max-imports = 16# Excluding some directories:exclude = .git __pycache__ .venv .eggs *.egg .idea# Exclude some violation checks globally:ignore = # WPS305: Found `f` string WPS305 # WPS336 Found explicit string concat WPS336 # Q000 Remove bad quotes -> "" Q000 # WPS421 Found wrong function call WPS421我想禁用对文档字符串的所有检查。我知道我可以使用错误代码,但列表很长。有没有办法关闭特定flake8插件(在我的例子中是该flake8-docstrings插件)?据我所知,没有办法在setup.cfg.
1 回答
一只名叫tom的猫
TA贡献1906条经验 获得超3个赞
您可以使用前缀忽略所有代码
您当前有一个ignore =
设置,您可以将D
( 的代码flake8-docstrings
)添加到该设置中
我还建议使用extend-ignore
overignore
因为这将保留默认的被忽略的内容集(包括一些冲突的默认规则(W504/W503))
添加回答
举报
0/150
提交
取消