third_party.pylibs.pylint.src/examples/pylintrc_camelcase

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
814 B
Plaintext
Raw Normal View History

2006-04-26 10:48:09 +00:00
# This pylintrc file will use the default settings except for the
# naming conventions, which will allow for camel case naming as found
# in Java code or several libraries such as PyQt, etc.
[BASIC]
# Regular expression which should only match correct module names
module-rgx=(([a-z][a-z0-9]*)|([A-Z][a-zA-Z0-9]+))$
# Regular expression which should only match correct class names
class-rgx=[A-Z][a-zA-Z0-9]+$
# Regular expression which should only match correct function names
function-rgx=[a-z_][a-zA-Z0-9]*$
# Regular expression which should only match correct method names
method-rgx=[a-z_][a-zA-Z0-9]*$
# Regular expression which should only match correct argument names
argument-rgx=[a-z][a-zA-Z0-9]*$
# Regular expression which should only match correct variable names
variable-rgx=[a-z][a-zA-Z0-9]*$