jendrikseipp / vulture

Find dead Python code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[QUESTION] How to suppress `unused-property` error?

mdabrowski1990 opened this issue · comments

The documentation specifies following errors code (just like for flake8 - https://flake8.pycqa.org/en/latest/user/error-codes.html):

  • F401 - unused-import
  • F841 - unused-variable

There is no code specified for unused-property though. I would like to have a code so I can suppress just this error (instead of using # noqa to suppress all errors in the line) as I use other linters as well.

I would appreciate if you could update README.md with this information.