I made a small Sublime package and wanted to run st_package_reviewer in CI. I'm also using Poetry with the virtualenvs.in-project option, which results in my project dependencies being installed to a .venv directory within the project directory. Unfortunately, when I then run the package reviewer, it tries to "review" all the Python code in my dependencies, and comes up with hundreds of errors.
It might be nice if the reviewer had an --ignore option for cases like this. Then I could say --ignore .venv and have it only check my own code.
I made a small Sublime package and wanted to run
st_package_reviewerin CI. I'm also using Poetry with thevirtualenvs.in-projectoption, which results in my project dependencies being installed to a.venvdirectory within the project directory. Unfortunately, when I then run the package reviewer, it tries to "review" all the Python code in my dependencies, and comes up with hundreds of errors.It might be nice if the reviewer had an
--ignoreoption for cases like this. Then I could say--ignore .venvand have it only check my own code.