How do I disable “missing docstring” warnings at a file-level in Pylint?

前端 未结 11 683
情书的邮戳
情书的邮戳 2020-12-12 14:18

Pylint throws errors that some of files are missing docstrings. I try and add docstrings to each class, method and function but it seems that Pylint also checks that files s

11条回答
  •  自闭症患者
    2020-12-12 14:41

    Go to "settings.json" and disable python pydocstyle

    "python.linting.pydocstyleEnabled": false
    

提交回复
热议问题