extract ruff lint rules to workspace

This commit is contained in:
pedrocarlo 2025-06-19 16:51:00 -03:00
parent 46135e43ce
commit 50c8b2ca2e
2 changed files with 13 additions and 13 deletions

View file

@ -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'

View file

@ -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
]