From 0e2b3782220f731f789430f4102509d114f9e4ab Mon Sep 17 00:00:00 2001 From: Arisu Tachibana Date: Wed, 25 Sep 2024 18:10:02 +0900 Subject: [PATCH] scripts/check: Add checks to execute pre commit This script is possble to be called pre-commit for check the files before commit Signed-off-by: Arisu Tachibana --- scripts/check.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 scripts/check.sh diff --git a/scripts/check.sh b/scripts/check.sh new file mode 100755 index 0000000..f0a8dcf --- /dev/null +++ b/scripts/check.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +poetry run black . +poetry run isort .