From 0ac21f7564b466bc46f2b07edcbb271178356e73 Mon Sep 17 00:00:00 2001 From: nstarman Date: Fri, 5 Jan 2024 16:16:19 -0500 Subject: [PATCH] run pylint pre-push Signed-off-by: nstarman --- .pre-commit-config.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index fd6eddb..589a18f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -85,3 +85,12 @@ repos: - id: check-dependabot - id: check-github-workflows - id: check-readthedocs + + - repo: local + hooks: + - id: pylint + name: pylint + entry: pylint + language: system + types: [python] + stages: [pre-push]