mirror of
https://github.com/HorlogeSkynet/SSHubl.git
synced 2024-12-27 16:00:11 +01:00
Samuel FORESTIER
a0c70a13fd
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>
40 lines
577 B
TOML
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",
|
|
]
|