diff --git a/aliases.sh b/aliases.sh index 1e00599..f4d9ca6 100644 --- a/aliases.sh +++ b/aliases.sh @@ -556,12 +556,11 @@ pymp () { fi case $1 in -f | formatear | format) - black --line-length $LENGTH $pympath --quiet ;; + ruff format --config $HOME/.config/ruff/config.toml ;; -h | --help | help | ayuda) pymp-help ;; esac - flake8 --max-line-length $LENGTH --exit-zero $pympath - vulture --exclude .venv $pympath || true + ruff check --config $HOME/.config/ruff/config.toml unset pympath }