diff --git a/bindings/python/pyproject.toml b/bindings/python/pyproject.toml index 91490121c..4b6509391 100644 --- a/bindings/python/pyproject.toml +++ b/bindings/python/pyproject.toml @@ -53,19 +53,6 @@ strip-extras = true header = false upgrade = false -[tool.ruff] -line-length = 120 - -[tool.ruff.lint] -extend-select = [ - "E", # pycodestyle errors - "W", # pycodestyle warings - "F", # pyflakes - 'Q', # flake8-quotes - 'C90', # mccabe - 'I', # isort -] - [tool.pytest.ini_options] testpaths = 'tests' log_format = '%(name)s %(levelname)s: %(message)s' diff --git a/pyproject.toml b/pyproject.toml index 4e069035c..5878a7264 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,3 +15,16 @@ limbo_test = { workspace = true } [tool.uv.workspace] members = ["testing", "scripts", "antithesis-tests", "bindings/python"] + +[tool.ruff] +line-length = 120 + +[tool.ruff.lint] +extend-select = [ + "E", # pycodestyle errors + "W", # pycodestyle warings + "F", # pyflakes + 'Q', # flake8-quotes + 'C90', # mccabe + 'I', # isort +]