1
0
mirror of https://github.com/HorlogeSkynet/SSHubl.git synced 2024-12-27 16:00:11 +01:00
SSHubl/pyproject.toml
Samuel FORESTIER a0c70a13fd Vendors mslex v1.3.0 package source (licensed under Apache 2.0)
Co-Authored-By: Lawrence D'Anna <larry@elder-gods.org>
Co-Authored-By: =?UTF-8?q?Tam=C3=A1s=20PEREGI?= <petamas@gmail.com>
Co-Authored-By: jlw4049 <jlw_4049@hotmail.com>
2024-11-30 15:29:27 +00:00

40 lines
577 B
TOML

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