ytdl-sub/pyproject.toml
2022-04-29 05:17:28 +00:00

18 lines
354 B
TOML

[tool.isort]
profile = "black"
line_length = 100
force_single_line = true
[tool.black]
line_length = 100
[tool.pylint.MASTER]
disable = [
"C0115", # Missing class docstring
"C0114", # missing-module-docstring
"R0903", # too-few-public-methods
"R0801", # similar lines
"W0511", # TODO
]
load-plugins = "pylint.extensions.docparams"