My current pylint
configuration:
- Installed via
pip
(in requirements.txt). - The
.pre-commit-config.yaml
:
- repo: local
hooks:
name: pylint
entry: pylint
language: system
types: [ python ]
files: ^src/
args:
[
"-rn", # display messages
"--rcfile=.pylintrc",
"--fail-under=8.5"
]
- Execution method:
source venv/bin/activate &&\
pip freeze &&\
pre-commit install &&\
pre-commit run --all-files
When all .py files receive score higher than 8.5 then pylint
is just passing and do not displaying any message. Is there any method to see all of the communicates even if --fail-under
is met? (so we know what some is wrong with the files)