From 57d29fecee1eb7302e24fe40b53cf11107765ce5 Mon Sep 17 00:00:00 2001 From: Yoland Y <4950057+yoland68@users.noreply.github.com> Date: Thu, 2 May 2024 17:04:36 -0700 Subject: [PATCH] Add pylint precommit hook --- .pre-commit-config.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 29fca09..ad950ff 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,4 +3,12 @@ repos: rev: 22.3.0 hooks: - id: black - language_version: python3.9 \ No newline at end of file + language_version: python3.9 + - repo: https://github.com/pylint-dev/pylint + rev: v2.16.2 + hooks: + - id: pylint + args: + - --disable=R,C,W + - --enable=E + \ No newline at end of file