-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (34 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
44 lines (34 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[tool.ruff]
line-length = 150
indent-width = 4
builtins = ["_"]
[tool.ruff.format]
# Like Black, use double quotes for strings.
quote-style = "double"
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"
[tool.ruff.lint]
select = ["E", "F"]
ignore = ["F821", "E402"]
[tool.ty.rules]
unresolved-reference = "ignore"
invalid-argument-type = "warn"
unresolved-attribute = "warn"
[tool.ty.analysis]
allowed-unresolved-imports = ["gi.**"]
[tool.ty.environment]
extra-paths= ["/home/tim/.local/lib/python3.14/site-packages/"]
[tool.ty.src]
exclude = ["tests/**", "builddir/**"]
[tool.pyright]
typeCheckingMode = "off"
exclude = ["**/builddir"]
reportMissingImports = true
reportUndefinedVariable = false
reportMissingModuleSource = false
stubPath = "/home/tim/.local/lib/python3.14/site-packages/"
# typeshedPath = "/home/tim/.local/lib/python3.13/site-packages/"