From aedb1aac1e4bfe8ebe110d1bd6b02fc1cd6da319 Mon Sep 17 00:00:00 2001 From: zackees Date: Thu, 19 Oct 2023 17:12:00 -0700 Subject: [PATCH] update linting --- lint.sh | 8 ++++++-- requirements.testing.txt | 3 ++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/lint.sh b/lint.sh index 5096ae3..34d1239 100755 --- a/lint.sh +++ b/lint.sh @@ -1,10 +1,14 @@ #! /bin/bash set -e -echo running pylint... -pylint transcribe_anything tests install_cuda.py + +echo running ruff... +ruff transcribe_anything tests install_cuda.py echo running flake8... flake8 transcribe_anything tests install_cuda.py +echo running pylint... +pylint transcribe_anything tests install_cuda.py + echo running mypy... mypy transcribe_anything tests install_cuda.py \ No newline at end of file diff --git a/requirements.testing.txt b/requirements.testing.txt index dc85374..bb29e8a 100644 --- a/requirements.testing.txt +++ b/requirements.testing.txt @@ -1,4 +1,5 @@ flake8 mypy pylint -black \ No newline at end of file +black +ruff \ No newline at end of file