Co-authored-by: OpenAI/GPT-5.6-Terra <vibecoder@antoineve.me> Co-authored-by: DeepSeek/DeepSeek-v4-Pro <vibecoder@antoineve.me> Co-authored-by: DeepSeek/DeepSeek-v4-Flash <vibecoder@antoineve.me>
17 lines
424 B
TOML
17 lines
424 B
TOML
[tool.ruff]
|
|
target-version = "py311"
|
|
line-length = 100
|
|
include = ["*.py"]
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E4", "E7", "E9", "F", "I"]
|
|
|
|
# Cet import différé est intentionnel : il prépare sys.path pour le script
|
|
# lancé directement (imports des modules de l'app après insertion du parent).
|
|
[tool.ruff.lint.per-file-ignores]
|
|
"scripts/import_csv.py" = ["E402"]
|
|
|
|
[tool.ruff.format]
|
|
quote-style = "double"
|
|
indent-style = "space"
|