From deedebb073b545ae4105251f116c01e2d0f5768c Mon Sep 17 00:00:00 2001 From: Julia Haas Date: Fri, 20 Dec 2024 15:23:21 +0100 Subject: [PATCH] readd wget for ruff --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d3bb540..b2c0e2c 100644 --- a/README.md +++ b/README.md @@ -277,7 +277,8 @@ alias black="black --check --diff --line-length 79 ." alias pylint="pylint ." ruff () { - toml-union ruff.toml ~/repos/github-workflows/linting-config-examples/ruff.toml -o ruff-merged.toml + wget --continue https://raw.githubusercontent.com/mundialis/github-workflows/refs/heads/main/linting-config-examples/ruff.toml -O /tmp/ruff.toml -q + toml-union ruff.toml /tmp/ruff.toml -o ruff-merged.toml /home/`whoami`/.local/bin/ruff check --config ruff-merged.toml --output-format=concise . --preview --unsafe-fixes }