From e06642b7f228a6e06f864fa5ef84a3d41c393f90 Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Mon, 16 Sep 2024 12:22:45 +0100 Subject: [PATCH] Ruff in the jungle, in the jungle, in the jungle. --- .github/workflows/python-linting.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-linting.yml b/.github/workflows/python-linting.yml index 6489a2e..6704c14 100644 --- a/.github/workflows/python-linting.yml +++ b/.github/workflows/python-linting.yml @@ -17,9 +17,9 @@ jobs: - name: Lint Frozen Modules shell: bash run: | - python3 -m ruff check --show-source --ignore E501 modules/py_frozen + python3 -m ruff check --output-format=full --ignore E501 modules/py_frozen - name: Lint Examples shell: bash run: | - python3 -m ruff check --show-source --ignore E501 examples + python3 -m ruff check --output-format=full --ignore E501 examples