11 lines
166 B
TOML
11 lines
166 B
TOML
[tool.ruff]
|
|
exclude = [".git", "*_pb2.py"]
|
|
line-length = 100
|
|
|
|
[tool.ruff.lint]
|
|
select = [
|
|
"I", # Import rules
|
|
]
|
|
|
|
[tool.ruff.lint.pydocstyle]
|
|
convention = "google" |