-
-
Notifications
You must be signed in to change notification settings - Fork 21.2k
/
pyproject.toml
91 lines (86 loc) · 1.59 KB
/
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[tool.mypy]
disallow_any_generics = true
explicit_package_bases = true
ignore_missing_imports = true
namespace_packages = true
no_implicit_optional = true
pretty = true
show_column_numbers = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
exclude = ["thirdparty/"]
python_version = "3.8"
[tool.ruff]
extend-exclude = ["thirdparty"]
extend-include = ["SConstruct", "SCsub"]
line-length = 120
target-version = "py38"
[tool.ruff.lint]
extend-select = [
"I", # isort
]
[tool.ruff.lint.per-file-ignores]
"{SConstruct,SCsub}" = [
"E402", # Module level import not at top of file
"F403", # Undefined local with import star
"F405", # Undefined local with import star usage
]
[tool.ruff.lint.isort]
sections = { metadata = ["misc.utility.scons_hints"] }
section-order = [
"future",
"metadata",
"standard-library",
"third-party",
"first-party",
"local-folder",
]
[tool.codespell]
enable-colors = true
write-changes = true
check-hidden = true
quiet-level = 3
builtin = ["clear", "rare", "en-GB_to_en-US"]
skip = [
".mailmap",
"*.desktop",
"*.gitignore",
"*.po",
"*.pot",
"*.rc",
"AUTHORS.md",
"COPYRIGHT.txt",
"core/input/gamecontrollerdb.txt",
"core/string/locales.h",
"DONORS.md",
"editor/project_converter_3_to_4.cpp",
"platform/android/java/lib/src/com/*",
"platform/web/package-lock.json",
]
ignore-words-list = [
"breaked",
"cancelled",
"checkin",
"colour",
"curvelinear",
"doubleclick",
"expct",
"findn",
"gird",
"hel",
"inout",
"labelin",
"lod",
"mis",
"nd",
"numer",
"ot",
"outin",
"parm",
"requestor",
"te",
"textin",
"thirdparty",
"vai",
]