-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
61 lines (54 loc) · 883 Bytes
/
pyproject.toml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[project]
name = "rules_appimage"
requires-python = ">=3.9"
[tool.black]
line-length = 120
[tool.isort]
extend_skip_glob = ["bazel-*"]
line_length = 120
profile = "black"
[tool.mypy]
allow_untyped_calls = true
exclude = "bazel-.*"
explicit_package_bases = true
follow_imports = "silent"
ignore_missing_imports = false
mypy_path = ["bazel-rules_appimage/external"]
namespace_packages = true
strict = true
[tool.pyright]
exclude = ["bazel-*", "examples/bazel-*"]
[tool.ruff.lint]
select = [
"B",
"D",
"E",
"F",
"I",
"N",
"Q",
"W",
"UP",
"COM",
"C4",
"DTZ",
"PIE",
"PT",
"SIM",
"TID",
"TCH",
"ARG",
"PTH",
"ERA",
"PL",
"TRY",
"PERF",
"RUF",
]
ignore = ["COM812", "D103", "D203", "D213", "PLR2004", "PLR5501", "PLR0912", "TRY003"]
[tool.ruff]
line-length = 120
[tool.yamlfix]
line_length = 120
indent_sequence = 2
indent_offset = 0