pyproject.toml 408 Bytes
Newer Older
one's avatar
one committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[tool.ruff]
line-length = 99

[tool.ruff.format]
skip-magic-trailing-comma = false

[tool.ruff.lint]
extend-select = ["I"]
ignore = ["E731", "E203", "F403", "F811"]

[tool.ruff.lint.per-file-ignores]
"**/package.py" = ["F403", "F405", "F811", "F821"]

[tool.pyright]
useLibraryCodeForTypes = true
reportMissingImports = true
reportWildcardImportFromLibrary = false
include = ["repos"]
extraPaths = ["repos"]