1
0
mirror of https://github.com/craigerl/aprsd.git synced 2026-08-14 23:53:32 -04:00

some cleanup

This commit is contained in:
2025-01-10 17:09:42 -05:00
parent e4f82d6054
commit e332d7c9d0
5 changed files with 299 additions and 295 deletions
+17
View File
@@ -173,3 +173,20 @@ skip_gitignore = true
branch = true
[tool.setuptools_scm]
[tool.ruff]
line-length = 88
select = [
"F", # pyflakes rules
"E", # pycodestyle error rules
"W", # pycodestyle warning rules
"B", # flake8-bugbear rules
# "I", # isort rules
]
ignore = [
"E501", # line-too-long
]
[tool.ruff.format]
indent-style = "space"
quote-style = "single"