diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index edc0f1a..6c07667 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,5 +12,19 @@ repos: # Ruff version. rev: v0.5.7 hooks: - # Run the linter. - - id: ruff + # Run the linter. + - id: ruff +- repo: local + hooks: + - id: pylint + name: pylint + entry: pylint + stages: [pre-push] + language: system + types: [python] + require_serial: true + args: + [ + "-rn", # Only display messages + "-sn", # Don't display the score + ]