Add git backup functionality
Fixes: https://github.com/TheLovinator1/discord-rss-bot/issues/421 Merges: https://github.com/TheLovinator1/discord-rss-bot/pull/422
This commit is contained in:
parent
9378dac0fa
commit
e8bd528def
16 changed files with 1062 additions and 89 deletions
|
|
@ -28,14 +28,19 @@ dev = ["djlint", "pytest"]
|
|||
requires = ["poetry-core>=1.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
||||
|
||||
[tool.ruff]
|
||||
|
||||
preview = true
|
||||
unsafe-fixes = true
|
||||
fix = true
|
||||
line-length = 120
|
||||
|
||||
lint.select = ["ALL"]
|
||||
lint.unfixable = ["F841"] # Don't automatically remove unused variables
|
||||
lint.pydocstyle.convention = "google"
|
||||
lint.isort.required-imports = ["from __future__ import annotations"]
|
||||
lint.pycodestyle.ignore-overlong-task-comments = true
|
||||
lint.isort.force-single-line = true
|
||||
|
||||
|
||||
lint.ignore = [
|
||||
"ANN201", # Checks that public functions and methods have return type annotations.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue