diff --git a/pylintrc b/pylintrc index dbe731101ce..98ffad54321 100644 --- a/pylintrc +++ b/pylintrc @@ -46,13 +46,13 @@ min-similarity-lines=10 # The invalid-name checker must be **enabled** for these hints to be used. include-naming-hint=yes -module-name-hint=lowercase (keep short; underscores are discouraged) -const-name-hint=UPPER_CASE_WITH_UNDERSCORES -class-name-hint=CapitalizedWords -class-attribute-name-hint=lower_case_with_underscores -attr-name-hint=lower_case_with_underscores -method-name-hint=lower_case_with_underscores -function-name-hint=lower_case_with_underscores -argument-name-hint=lower_case_with_underscores -variable-name-hint=lower_case_with_underscores -inlinevar-name-hint=lower_case_with_underscores (short is OK) +argument-naming-style=snake_case +attr-naming-style=snake_case +class-attribute-naming-style=snake_case +class-naming-style=PascalCase +const-naming-style=UPPER_CASE +function-naming-style=snake_case +inlinevar-naming-style=snake_case (short is OK) +method-naming-style=snake_case +module-naming-style=snake_case (keep short) +variable-naming-style=snake_case