Files
scale-gke-qdrant-llama/pyproject.toml
Benito Martin 4f8c435d62 first deploy
2024-06-30 00:32:19 +02:00

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"]