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
|
# Ruff linter.
#
# Repository: https://github.com/astral-sh/ruff
#
# Documentation: https://beta.ruff.rs/docs/
[tool.ruff]
line-length = 100 # same as rustfmt
lint.ignore = [
"E402", # Module level import not at top of file
]
[tool.pylint.master]
#extension-pkg-allow-list = ["brlapi"] # this makes cli pylint crash.
[tool.pylint.typecheck]
ignored-classes = ["AXUtilities"]
[tool.pylint.messages_control]
disable = [
"fixme",
"duplicate-code",
]
[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
[[tool.mypy.overrides]]
module = "dasbus.*"
ignore_missing_imports = true
|