Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/pyproject.toml
9820 views
1
[tool.mypy]
2
disallow_any_generics = true
3
explicit_package_bases = true
4
ignore_missing_imports = true
5
namespace_packages = true
6
no_implicit_optional = true
7
pretty = true
8
show_column_numbers = true
9
warn_redundant_casts = true
10
warn_return_any = true
11
warn_unreachable = true
12
exclude = ["thirdparty/"]
13
python_version = "3.8"
14
15
[tool.ruff]
16
extend-exclude = ["thirdparty"]
17
extend-include = ["*SConstruct", "*SCsub"]
18
line-length = 120
19
target-version = "py38"
20
21
[tool.ruff.lint]
22
extend-select = [
23
"I", # isort
24
]
25
26
[tool.ruff.lint.per-file-ignores]
27
"{SConstruct,SCsub}" = [
28
"E402", # Module level import not at top of file
29
"F403", # Undefined local with import star
30
"F405", # Undefined local with import star usage
31
]
32
33
[tool.ruff.lint.isort]
34
sections = { metadata = ["misc.utility.scons_hints"] }
35
section-order = [
36
"future",
37
"metadata",
38
"standard-library",
39
"third-party",
40
"first-party",
41
"local-folder",
42
]
43
44
[tool.codespell]
45
enable-colors = true
46
write-changes = true
47
check-hidden = true
48
quiet-level = 3
49
builtin = ["clear", "rare", "en-GB_to_en-US"]
50
skip = [
51
".mailmap",
52
"*.desktop",
53
"*.gitignore",
54
"*.po",
55
"*.pot",
56
"*.rc",
57
"AUTHORS.md",
58
"COPYRIGHT.txt",
59
"core/input/gamecontrollerdb.txt",
60
"core/string/locales.h",
61
"DONORS.md",
62
"editor/project_converter_3_to_4.cpp",
63
"platform/android/java/lib/src/com/*",
64
"platform/web/package-lock.json",
65
]
66
ignore-words-list = [
67
"breaked",
68
"cancelled",
69
"checkin",
70
"colour",
71
"curvelinear",
72
"doubleclick",
73
"expct",
74
"findn",
75
"gird",
76
"hel",
77
"inout",
78
"labelin",
79
"lod",
80
"masia",
81
"mis",
82
"nd",
83
"numer",
84
"ot",
85
"outin",
86
"parm",
87
"requestor",
88
"streamin",
89
"te",
90
"textin",
91
"thirdparty",
92
"vai",
93
]
94
95