21 lines
409 B
INI
21 lines
409 B
INI
[MESSAGES CONTROL]
|
|
|
|
disable=logging-fstring-interpolation
|
|
|
|
[FORMAT]
|
|
|
|
# Maximum number of characters on a single line.
|
|
max-line-length=120
|
|
|
|
# Allow the body of an if to be on the same line as the test if there is no
|
|
# else.
|
|
single-line-if-stmt=yes
|
|
|
|
[DESIGN]
|
|
|
|
# Maximum number of locals for function / method body.
|
|
max-locals=20
|
|
|
|
# Minimum number of public methods for a class (see R0903).
|
|
min-public-methods=0
|