1
0
mirror of https://github.com/HorlogeSkynet/SSHubl.git synced 2024-10-18 04:00:15 +02:00
SSHubl/pyproject.toml
Samuel FORESTIER 7a1568c6ea Vendors mslex v1.2.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-10-14 16:38:40 +02: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",
]