This is an automated email from the ASF dual-hosted git repository.
gurwls223 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push:
new 1d86c4d023ea [SPARK-54632][PYTHON][FOLLOWUP] Add ruff to cli help
options
1d86c4d023ea is described below
commit 1d86c4d023ea4d0081d9a540c17db44eb9042d2e
Author: Tian Gao <[email protected]>
AuthorDate: Tue Jan 6 07:44:47 2026 +0900
[SPARK-54632][PYTHON][FOLLOWUP] Add ruff to cli help options
### What changes were proposed in this pull request?
Add `--ruff` to `./dev/lint-python` help messages
### Why are the changes needed?
Forgot to add it in https://github.com/apache/spark/pull/53378
### Does this PR introduce _any_ user-facing change?
No
### How was this patch tested?
`./dev/lint-python -h` shows `ruff`.
### Was this patch authored or co-authored using generative AI tooling?
No
Closes #53685 from gaogaotiantian/add-ruff-to-cli.
Authored-by: Tian Gao <[email protected]>
Signed-off-by: Hyukjin Kwon <[email protected]>
---
dev/lint-python | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev/lint-python b/dev/lint-python
index 4a5036af47fa..db445a89cdd1 100755
--- a/dev/lint-python
+++ b/dev/lint-python
@@ -33,7 +33,7 @@ function exit_with_usage {
echo "lint-python - linter for Python"
echo ""
echo "usage:"
- cl_options="[--compile] [--black] [--custom-pyspark-error] [--mypy]
[--mypy-examples] [--mypy-data]"
+ cl_options="[--compile] [--black] [--custom-pyspark-error] [--ruff] [--mypy]
[--mypy-examples] [--mypy-data]"
echo "lint-python $cl_options"
echo ""
exit 1
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]