CodingStyle-CapitalizeFunctions

Start functions and methods with an upper-case letter

Required inputs: IR

Functions and methods must start with an upper-case letter.
See Also
Rule Miscellaneous-NamingConvention, which supersedes this rule as it provides more flexible support for naming conventions.

Possible Messages

Key

Text

Severity

Disabled

funcname_starts_lowercase

Function name does not start with upper-case letter.

None

False

funcname_starts_lowercase_or_has_underscore

Function name does not start with upper-case letter or contains underscores.

None

False

Options

allow_underscores

allow_underscores : bool = True

Allow underscores in identifier.