pylint in toml

This commit is contained in:
jbannon 2022-04-29 05:17:28 +00:00
parent 1326fbf07f
commit 7103a01e1d
2 changed files with 12 additions and 10 deletions

View file

@ -1,9 +0,0 @@
[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

View file

@ -4,4 +4,15 @@ line_length = 100
force_single_line = true
[tool.black]
line_length = 100
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"