Skip to content

Instantly share code, notes, and snippets.

@htv2012
Last active August 23, 2025 19:35
Show Gist options
  • Select an option

  • Save htv2012/b23abe4680c3e3a25044a3e71ccfa972 to your computer and use it in GitHub Desktop.

Select an option

Save htv2012/b23abe4680c3e3a25044a3e71ccfa972 to your computer and use it in GitHub Desktop.
ruff formatting and linting commands
lint:
@uv run ruff check --select I --fix . --quiet
@uv run ruff format . --quiet
@uv run ruff check . --fix --quiet
# Using ruff alone
ruff check --select I --fix . --quiet
ruff format . --quiet
ruff check . --fix --quiet
# Using uv
uv run ruff check --select I --fix . --quiet
uv run ruff format . --quiet
uv run ruff check . --fix --quiet
# Using uv tool
uv tool run ruff check --select I --fix . --quiet
uv tool run ruff format . --quiet
uv tool run ruff check . --fix --quiet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment