forked from llm-d/llm-d-kv-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruff.toml
More file actions
32 lines (29 loc) · 640 Bytes
/
Copy pathruff.toml
File metadata and controls
32 lines (29 loc) · 640 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
target-version = "py312"
line-length = 120
exclude = [
".venv",
"build",
"*_pb2.py",
"*_pb2_grpc.py",
]
[lint]
select = [
"E", # pycodestyle
"F", # Pyflakes
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"I", # isort
"G", # flake8-logging-format
]
ignore = [
"F405", # star imports
"F403", # star imports
"E731", # lambda expression assignment
"B905", # zip without strict=
"B007", # loop control variable not used within loop body
"UP032", # f-string format
"G004", # allow f-strings in logging
]
[format]
docstring-code-format = true