Skip to content

Commit

Permalink
Fix ecosystem check for indico
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaReiser committed Feb 29, 2024
1 parent 0293908 commit 46d7bd6
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions python/ruff-ecosystem/ruff_ecosystem/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,6 @@
Project(repo=Repository(owner="pypa", name="pip", ref="main")),
Project(
repo=Repository(owner="pypa", name="setuptools", ref="main"),
# Since `setuptools` opts into the "preserve" quote style which
# require preview mode, we must disable it during the `--no-preview` run
config_overrides=ConfigOverrides(
when_no_preview={"format.quote-style": "double"}
),
),
Project(repo=Repository(owner="python", name="mypy", ref="master")),
Project(
Expand Down Expand Up @@ -99,6 +94,9 @@
),
Project(
repo=Repository(owner="indico", name="indico", ref="master"),
config_overrides={
"lint.extend_ignore": ["S401"]
},
),
# Jupyter Notebooks
Project(
Expand Down

0 comments on commit 46d7bd6

Please sign in to comment.