pylint in toml
This commit is contained in:
parent
1326fbf07f
commit
7103a01e1d
2 changed files with 12 additions and 10 deletions
|
|
@ -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
|
||||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue