From b622cb18bcd95636c91731f73fece95d4dbc3988 Mon Sep 17 00:00:00 2001 From: Kekoa Kaaikala Date: Thu, 25 Aug 2022 14:35:25 +0000 Subject: [PATCH] Project: Add ShellCheck to pre-commit hooks PR #2219 --- .pre-commit-config.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 199a62b6b..7a553388a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -41,6 +41,10 @@ repos: - id: mypy additional_dependencies: [types-paramiko, types-python-dateutil, types-requests] args: [--ignore-missing-imports] + - repo: https://github.com/koalaman/shellcheck-precommit + rev: v0.7.2 + hooks: + - id: shellcheck - repo: local hooks: - id: pytest