Merge remote-tracking branch 'origin/dev' into feat/cb2ui-robot-connections
This commit is contained in:
@@ -24,6 +24,11 @@ dependencies = [
|
||||
]
|
||||
|
||||
[dependency-groups]
|
||||
dev = [
|
||||
"pre-commit>=4.3.0",
|
||||
"ruff>=0.14.2",
|
||||
"ruff-format>=0.3.0",
|
||||
]
|
||||
test = [
|
||||
"pytest>=8.4.2",
|
||||
"pytest-asyncio>=1.2.0",
|
||||
@@ -33,3 +38,21 @@ test = [
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
pythonpath = ["src"]
|
||||
|
||||
[tool.ruff]
|
||||
line-length = 100
|
||||
|
||||
[tool.ruff.lint]
|
||||
extend-select = [
|
||||
"E", # pycodestyle
|
||||
"F", # pyflakes
|
||||
"I", # isort (import sorting)
|
||||
"UP", # pyupgrade (modernize code)
|
||||
"B", # flake8-bugbear (common bugs)
|
||||
"C4", # flake8-comprehensions (unnecessary comprehensions)
|
||||
]
|
||||
|
||||
ignore = [
|
||||
"E226", # spaces around operators
|
||||
"E701", # multiple statements on a single line
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user