Skip to content
Snippets Groups Projects

Update to Ubuntu24.04

Merged Bartek Wrona requested to merge bw_ubuntu24.04_update into master
1 file
+ 6
3
Compare changes
  • Side-by-side
  • Inline
+ 6
3
@@ -48,7 +48,10 @@ line-length = 120
[tool.ruff]
line-length = 120
select = [# https://beta.ruff.rs/docs/rules/
[tool.ruff]
# https://beta.ruff.rs/docs/rules/
select = [
"F",
"E",
"W",
@@ -95,7 +98,7 @@ ignore = [
"D100", # missing docstring in public module
]
[tool.ruff.per-file-ignores]
[tool.ruff.lint.per-file-ignores]
"tests/**" = [ # no need for docstrings in tests
"D100", # missing docstring in public module
"D101", # missing docstring in public class
@@ -108,7 +111,7 @@ ignore = [
]
[tool.ruff.isort]
[tool.ruff.lint.isort]
known-first-party = ["helpy", "schemas", "wax"]
required-imports = ["from __future__ import annotations"]
Loading