@@ -131,6 +131,28 @@ max-complexity = 16
131131[tool .isort ]
132132profile = " black"
133133
134+ [tool .pylint ]
135+ master.py-version = " 3.9"
136+ master.extension-pkg-allow-list = [" pydantic" ]
137+ design.max-attributes = 8
138+ design.max-locals = 16
139+ design.max-branches = 16
140+ design.max-returns = 8
141+ design.max-args = 7
142+ basic.good-names = [
143+ " a" , " b" , " c" , " d" , " e" , " f" , " i" , " j" , " k" , " r" , " v" ,
144+ " ex" , " _" , " fp" , " im" , " nc" , " ui" ,
145+ ]
146+ reports.output-format = " colorized"
147+ similarities.ignore-imports = " yes"
148+ messages_control.disable = [
149+ " missing-class-docstring" ,
150+ " missing-function-docstring" ,
151+ " line-too-long" ,
152+ " too-few-public-methods" ,
153+ " too-many-public-methods" ,
154+ ]
155+
134156[tool .pytest .ini_options ]
135157minversion = " 6.0"
136158testpaths = [
@@ -171,25 +193,3 @@ warn_no_return = true
171193strict_optional = true
172194check_untyped_defs = true
173195show_error_codes = true
174-
175- [tool .pylint ]
176- master.py-version = " 3.9"
177- master.extension-pkg-allow-list = [" pydantic" ]
178- design.max-attributes = 8
179- design.max-locals = 16
180- design.max-branches = 16
181- design.max-returns = 8
182- design.max-args = 7
183- basic.good-names = [
184- " a" , " b" , " c" , " d" , " e" , " f" , " i" , " j" , " k" , " r" , " v" ,
185- " ex" , " _" , " fp" , " im" , " nc" , " ui" ,
186- ]
187- reports.output-format = " colorized"
188- similarities.ignore-imports = " yes"
189- messages_control.disable = [
190- " missing-class-docstring" ,
191- " missing-function-docstring" ,
192- " line-too-long" ,
193- " too-few-public-methods" ,
194- " too-many-public-methods" ,
195- ]
0 commit comments