Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ extend-select = [
"B", # see flake8-bugbear
"C4", # see flake8-comprehension
"I", # sort imports
"S", # see flake8-bandit
"SIM", # see flake8-simplify
"TC", # see flake8-type-checking
"UP", # see pyupgrade
Expand All @@ -82,6 +83,10 @@ extend-select = [
force-single-line = true
required-imports = ["from __future__ import annotations"]

[tool.ruff.lint.per-file-ignores]
# asserts are fine in tests
"tests/**" = ["S101"]

[tool.setuptools.package-data]
sqlite_export_for_ynab = ["py.typed"]
"sqlite_export_for_ynab.ddl" = ["*.sql"]
Expand Down
Loading