Lines Matching refs:class
71 # (visual studio) and html. You can also give a reporter class, eg
116 # Tells whether missing members accessed in mixin class should be ignored. A
117 # mixin class is detected if its name ends with "mixin" (case insensitive).
193 # Regular expression matching correct class attribute names
194 class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
196 # Naming hint for class attribute names
197 class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
205 # Regular expression matching correct class names
206 class-rgx=[A-Z_][a-zA-Z0-9]+$
208 # Naming hint for class names
209 class-name-hint=[A-Z_][a-zA-Z0-9]+$
223 # Regular expression which should only match function or class names that do
324 # Maximum number of parents for a class (see R0901).
327 # Maximum number of attributes for a class (see R0902).
330 # Minimum number of public methods for a class (see R0903).
333 # Maximum number of public methods for a class (see R0904).
360 # List of valid names for the first argument in a class method.
363 # List of valid names for the first argument in a metaclass class method.