Compare commits

...

2 commits

Author SHA1 Message Date
0bd4c45ba4 chore: add ruff.list rules 2026-08-04 11:32:30 +00:00
c432420f90 Merge pull request 'chore(lint)' (#4) from bitdori-issue-1 into main
Reviewed-on: #4
2026-07-21 17:45:05 +00:00

View file

@ -4,6 +4,7 @@ version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.14"
license = "LGPL-2.1-or-later"
dependencies = []
[dependency-groups]
@ -25,11 +26,22 @@ target-version = "py313"
[tool.ruff.lint]
select = [
"E",
"F",
"I",
"UP",
"B",
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"PIE", # flake8-pie
"PT", # flake8-pytest-style
"RET", # flake8-return
"SIM", # flake8-simplify
"ARG", # flake8-unused-arguments
"PTH", # flake8-use-pathlib
"ERA", # eradicate
"RUF", # ruff-specific rules
]
[tool.ruff.lint.isort]