pylint_runner icon indicating copy to clipboard operation
pylint_runner copied to clipboard

Python module that recursively runs pylint on python files in current directory and any sub-directories

Results 7 pylint_runner issues
Sort by recently updated
recently updated
newest added

I suspect main.py: if pylint_version[0] >= 2 and (pylint_pre_5 or pylint_5): exit_kwarg = {"do_exit": False} else: exit_kwarg = {"exit": False} Currently when I run pylint_runner I get: TypeError: Run.__init__() got...

When the system pylint version ends in -dev it causes pylint_runner to crash. Fixed. Also remedied the few pylint warnings given on the project.

Pylint 2.5.0 and later support reading configuration from `pyproject.toml` or `setup.cfg` if `pylintrc` and `.pylintrc` do not exist. (PyCQA/pylint#3169) In order to support these configuration files, this PR changes pylint_runner...

In order to differentiate between sections for different tools in the increasingly common `setup.cfg` file, Pylint sections are prefaced with `pylint.`, which breaks `pylint_runner`'s parsing of ignored files and directories....

Each time I run pylint the error are raised multiple times: xx/xx/xx.py:114:4: R0201: Method could be a function (no-self-use) xx/xx/xx.py:133:4: R0201: Method could be a function (no-self-use) xx/xx/xx.py:114:4: R0201: Method...

HI All After upgrading to new v0.6.0 im getting error but code rate is 10.00/10: `##### ************* Module –rcfile rcfile:1:0: F0001: No module named –rcfile (fatal) ************* Module path_to_file=.pylintrc path_to_file=.pylintrc:1:0:...

These are the commands I ran: `python3.7 -m pip install pylint_runner` `pylint_runner -v` output: `zsh: command not found: pylint_runner` OS: Ubuntu 16.04