isort+authfix
All checks were successful
Deploy to core / deploy (push) Successful in 1m36s

This commit is contained in:
2024-02-19 14:45:55 +03:00
parent b89060f15f
commit 6d3c0ee39e
18 changed files with 57 additions and 27 deletions

View File

@@ -24,7 +24,56 @@ dogpile-cache = "^1.3.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.2.1"
isort = "^5.13.2"
pyright = "^1.1.350"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 120
[tool.ruff]
select = ["E4", "E7", "E9", "F"]
ignore = []
line-length = 120
target-version = "py312"
[tool.pyright]
venvPath = "."
venv = ".venv"
include = ["."]
useLibraryCodeForTypes = false
disableLanguageServices = false
disableOrganizeImports = false
reportMissingImports = true
reportMissingModuleSource = "warning"
reportImportCycles = "warning"
maxMemoryForLargeFile = 4096
pythonVersion = "3.12"
autoImportCompletions = true
useVirtualEnv = true
typeCheckingMode = "basic"
disableJediCompletion = true
disableCompletion = false
disableSnippetCompletion = false
disableGoToDefinition = false
disableRenaming = false
disableSignatureHelp = false
diagnostics = true
logLevel = "debug"
pluginSearchPaths = []
typings = {}
mergeTypeStubPackages = false
[tool.pytest.ini_options]
pythonpath = ["tests"]
[tool.pytest]
python_files = "*_test.py"