-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpyproject.toml
61 lines (51 loc) · 1.34 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
# Ruff linter.
#
# Repository: https://github.com/astral-sh/ruff
#
# Documentation: https://beta.ruff.rs/docs/
[tool.ruff]
line-length = 100 # same as rustfmt
ignore = [
"E402", # Module level import not at top of file
]
[tool.mypy]
exclude = [
"gnome-shell", # mypy doesn't like the name
"notification-daemon", # mypy doesn't like the name
"smuxi-frontend-gnome", # mypy doesn't like the name
"J2SE-access-bridge", # mypy doesn't like the name
"subprojects", # beyond our control
"test-historical", # legacy and mostly not python
]
[[tool.mypy.overrides]]
module = [
"orca.settings",
"orca.braille",
"orca.spiel",
"orca.speechdispatcherfactory",
]
disable_error_code = ["var-annotated"]
[[tool.mypy.overrides]]
module = "brlapi.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "cairo.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "dbus.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "gi.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "louis.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "orca.orca_i18n"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "orca.orca_platform"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "speechd.*"
ignore_missing_imports = true