From 83195a60309f047e88bc514a4f13e6fba434c68e Mon Sep 17 00:00:00 2001 From: Adrian Date: Tue, 6 Feb 2024 01:37:58 +0100 Subject: [PATCH] ruff-ecosystem: Add indico/indico repo (#9850) It's a pretty big codebase using lots of different stuff, so a good candidate for finding obscure problems. I didn't look more closely which options are used (I have the feeling `--select ALL` is not implied, since I see you adding it via `check_options` for certain entries but not for others), the repo itself has a pretty large ruff.toml - but assuming ecosystem just cares about differences between base and head of a PR, `ALL` most likely makes sense. --- python/ruff-ecosystem/ruff_ecosystem/defaults.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/ruff-ecosystem/ruff_ecosystem/defaults.py b/python/ruff-ecosystem/ruff_ecosystem/defaults.py index 285f2eb76d..9f4ccc4ea0 100644 --- a/python/ruff-ecosystem/ruff_ecosystem/defaults.py +++ b/python/ruff-ecosystem/ruff_ecosystem/defaults.py @@ -95,6 +95,9 @@ DEFAULT_TARGETS = [ repo=Repository(owner="zulip", name="zulip", ref="main"), check_options=CheckOptions(select="ALL"), ), + Project( + repo=Repository(owner="indico", name="indico", ref="master"), + ), # Jupyter Notebooks Project( # fork of `huggingface` without syntax errors in notebooks