Added workflow?

This commit is contained in:
2025-02-25 19:17:29 -08:00
parent 9c515cfab0
commit c19af78ae2
12 changed files with 222 additions and 38 deletions

18
tools/scripts/ruff.toml Normal file
View File

@@ -0,0 +1,18 @@
exclude = ["venv"]
line-length = 88
indent-width = 4
target-version = "py39"
include = ["scripts/**/*.py"]
[lint]
select = ["E4", "E7", "E9", "F"]
ignore = []
fixable = ["ALL"]
unfixable = []
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[format]
quote-style = "double"
indent-style = "tab"
skip-magic-trailing-comma = false
line-ending = "lf"