1
0
mirror of https://github.com/HorlogeSkynet/SSHubl.git synced 2024-09-16 16:00:11 +02:00
SSHubl/pyproject.toml
Samuel FORESTIER d3ef40fe79 Disables spellcheck in remote terminal view (Terminus v0.3.32+)
This patch replaces previous Terminus package detection by a proper
`terminus_open` lookup (actually `TerminusOpenCommand` command class).

SSHubl won't (try to) consume PackageControl API anymore, which should
result in better performance when opening a remote terminal for the
first time.

New `st_utils.get_command_class` function comes with some proper testing
(including its conditional cache feature).

As Terminus v0.3.32 was released on 15/08/2024, we expect it to be
globally rolled out before next version of SSHubl.
2024-09-02 19:18:32 +02:00

31 lines
476 B
TOML

[tool.pylint.MASTER]
disable = [
"missing-docstring",
"relative-beyond-top-level",
]
ignored-modules = [
"sublime",
"sublime_plugin",
]
jobs = 0
load-plugins = [
"pylint_secure_coding_standard",
]
[tool.pylint.DESIGN]
min-public-methods = 0
[tool.mypy]
check_untyped_defs = true
[[tool.mypy.overrides]]
module = "sublime.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "sublime_plugin.*"
ignore_missing_imports = true
[tool.ruff]
line-length = 100