Lines Matching refs:hint
275 # Include a hint for the correct naming format with invalid-name
276 include-naming-hint=no
283 # Naming hint for function names
284 function-name-hint=[a-z_][a-z0-9_]{2,30}$
289 # Naming hint for variable names
290 variable-name-hint=[a-z_][a-z0-9_]{2,30}$
295 # Naming hint for constant names
296 const-name-hint=(([A-Z_][A-Z0-9_]*)|(__.*__))$
301 # Naming hint for attribute names
302 attr-name-hint=[a-z_][a-z0-9_]{2,30}$
307 # Naming hint for argument names
308 argument-name-hint=[a-z_][a-z0-9_]{2,30}$
313 # Naming hint for class attribute names
314 class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
320 # Naming hint for inline iteration names
321 inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$
326 # Naming hint for class names
327 class-name-hint=[A-Z_][a-zA-Z0-9]+$
334 # Naming hint for module names
335 module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
343 # Naming hint for method names
344 method-name-hint=[a-z_][a-z0-9_]{2,30}$