mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-10 21:58:30 +00:00
12 lines
559 B
Bash
Executable file
12 lines
559 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
###
|
|
# Benchmark Ruff's performance against a variety of similar tools.
|
|
###
|
|
|
|
hyperfine --ignore-failure --warmup 5 \
|
|
"./target/release/ruff ./crates/ruff_linter/resources/test/cpython/ --no-cache" \
|
|
"pyflakes crates/ruff_linter/resources/test/cpython" \
|
|
"autoflake --recursive --expand-star-imports --remove-all-unused-imports --remove-unused-variables --remove-duplicate-keys crates/ruff_linter/resources/test/cpython" \
|
|
"pycodestyle crates/ruff_linter/resources/test/cpython" \
|
|
"flake8 crates/ruff_linter/resources/test/cpython"
|