mirror of
https://github.com/benitomartin/scale-gke-qdrant-llama.git
synced 2025-12-17 02:54:25 +01:00
20 lines
481 B
TOML
20 lines
481 B
TOML
[tool.ruff]
|
|
# Define maximum line length
|
|
line-length = 88
|
|
|
|
[tool.ruff.lint]
|
|
# Define the rules to enforce, including flake8 and isort rules
|
|
select = [
|
|
"E", # Error codes (from flake8)
|
|
"F", # Failures (from flake8)
|
|
"W", # Warnings (from flake8)
|
|
"C90", # Custom/Specific categories
|
|
"I", # Import sorting (from isort)
|
|
"D", # Docstring conventions (from pydocstyle)
|
|
]
|
|
|
|
# Exclude specific error codes
|
|
ignore = ["E501", "D211", "D212"]
|
|
|
|
|