Can Pylint error checking be customized?

后端 未结 6 1984
名媛妹妹
名媛妹妹 2021-02-02 07:25

I am using pydev where I have set up pylint. The problem is that even inside the comments, pylint reports warnings. I was looking to disable any sort of checking inside any line

6条回答
  •  太阳男子
    2021-02-02 07:53

    Further to the above answer from pradyunsg, here is another regex for CamelCase:

    ^([a-z]\w+[A-Z]+\w+)
    

    (Taken from PyLint's spelling.py checker, found in: %APPDATA% - Local - Programs - Python - [PythonVersion] - Lib - site-packages - pylint - checkers folder)

提交回复
热议问题