Skip to content

Commit e02883c

Browse files
authoredMar 8, 2025
[Misc] Don't run ruff at all on 3rd party libs (vllm-project#14493)
Signed-off-by: DarkLight1337 <tlleungac@connect.ust.hk>
1 parent 9085aab commit e02883c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ exclude = [
6363
]
6464

6565
[tool.ruff.lint.per-file-ignores]
66+
"vllm/third_party/**" = ["ALL"]
6667
"vllm/version.py" = ["F401"]
6768
"vllm/_version.py" = ["ALL"]
6869
# Python 3.8 typing. TODO: Remove these excludes after v1.0.0
@@ -84,7 +85,6 @@ exclude = [
8485
"vllm/profiler/**/*.py" = ["UP006", "UP035"]
8586
"vllm/prompt_adapter/**/*.py" = ["UP006", "UP035"]
8687
"vllm/spec_decode/**/*.py" = ["UP006", "UP035"]
87-
"vllm/third_party/**/*.py" = ["UP006", "UP035"]
8888
"vllm/transformers_utils/**/*.py" = ["UP006", "UP035"]
8989
"vllm/triton_utils/**/*.py" = ["UP006", "UP035"]
9090
"vllm/usage/**/*.py" = ["UP006", "UP035"]

0 commit comments

Comments
 (0)
Please sign in to comment.