When writing style guidance (including README/CONTRIBUTING snippets), keep examples concise and readable:

1) Use idiomatic tool invocations (avoid redundant arguments)

Example:

# Prefer (defaults to current directory)
ruff check

# Only specify a path when you truly need it
ruff check path/to/package

2) Format lists in sentences with consistent punctuation

Example:

List comprehensions and generators are preferred over the use of `lambda`, `map`, `filter`, and `reduce`.