Skip to content

Commit e32b511

Browse files
committed
Disable warnings for * and ** magic
Also permit up to 10 arguments per method/function, and up to 30 public methods per class.
1 parent 58cc26d commit e32b511

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: pylint.conf

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ load-plugins=
3333
# can either give multiple identifier separated by comma (,) or put this option
3434
# multiple time (only on the command line, not in the configuration file where
3535
# it should appear only once).
36-
disable=
36+
disable=W0142
3737

3838

3939
[REPORTS]
@@ -193,7 +193,7 @@ valid-classmethod-first-arg=cls
193193
[DESIGN]
194194

195195
# Maximum number of arguments for function / method
196-
max-args=5
196+
max-args=10
197197

198198
# Argument names that match this expression will be ignored. Default to name
199199
# with leading underscore
@@ -221,7 +221,7 @@ max-attributes=7
221221
min-public-methods=2
222222

223223
# Maximum number of public methods for a class (see R0904).
224-
max-public-methods=20
224+
max-public-methods=30
225225

226226

227227
[IMPORTS]

0 commit comments

Comments
 (0)