From f05c389de1d1d45590187529821974cfec000fe3 Mon Sep 17 00:00:00 2001 From: kraanzu Date: Sat, 6 Jan 2024 20:13:03 +0530 Subject: [PATCH] chore: replace `flake8` with `ruff` --- .github/workflows/linting.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 863c807d..c63c1023 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -1,4 +1,4 @@ -name: Flake8 +name: Ruff on: [push, pull_request] @@ -17,7 +17,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install flake8 + pip install ruff - name: Analysing the code with pylint run: | - flake8 $(git ls-files '*.py') + ruff $(git ls-files '*.py')