[Mod] 改进pylint的命名规则

This commit is contained in:
nanoric 2019-01-24 06:22:37 -04:00
parent 8bb0bb5fbf
commit 37f528ba08

View File

@ -121,7 +121,7 @@ never-returning-functions=sys.exit
# Regular expression matching correct argument names. Overrides argument- # Regular expression matching correct argument names. Overrides argument-
# naming-style. # naming-style.
argument-rgx=^[_a-z][a-z0-9_]*$ argument-rgx=^_?[a-z][a-z0-9_]*$
# Naming style matching correct attribute names. # Naming style matching correct attribute names.
# self.xxxx # self.xxxx
@ -146,7 +146,7 @@ bad-names=foo,
# attribute-naming-style. # attribute-naming-style.
# ClassA.XXXX # ClassA.XXXX
# except that dataclass should be snake_case # except that dataclass should be snake_case
class-attribute-rgx=^([A-Z][A-Z_]+|[_a-z][a-z0-9_]+)$ class-attribute-rgx=^_?([A-Z][A-Z_]+|[a-z][a-z0-9_]+)$
# Naming style matching correct class names. # Naming style matching correct class names.
class-naming-style=PascalCase class-naming-style=PascalCase