mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-28 04:45:01 +00:00

Adds the ability to override `ruff.toml` or `pyproject.toml` settings per-project during ecosystem checks. Exploring this as a fix for the `setuptools` project error. Also useful for including Jupyter Notebooks in the ecosystem checks, see #9293 Note the remaining `sphinx` project error is resolved in #9294
15 lines
318 B
TOML
15 lines
318 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "ruff-ecosystem"
|
|
version = "0.0.0"
|
|
dependencies = ["unidiff==0.7.5", "tomli_w==1.0.0", "tomli==2.0.1"]
|
|
|
|
[project.scripts]
|
|
ruff-ecosystem = "ruff_ecosystem.cli:entrypoint"
|
|
|
|
[tool.ruff.lint]
|
|
extend-select = ["I"]
|
|
preview = true
|