| # We're ok with short funtion argument names. |
| argument-rgx=[a-z_][a-z0-9_]*$ |
| # We prefer docstrings, but we don't require them on all functions. |
| # Require them only on long functions (for some value of long). |
| # Allow longer methods than the default. |
| method-rgx=[a-z_][a-z0-9_]{2,35}$ |
| # Allow module names containing a dash (but no underscore or uppercase letter). |
| # They are whole programs, not meant to be included by another module. |
| module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+)|[a-z][-0-9a-z]+)$ |
| # Some functions don't need docstrings. |
| no-docstring-rgx=(run_)?main$ |
| # We're ok with short local or global variable names. |
| variable-rgx=[a-z_][a-z0-9_]*$ |
| # Allow more than the default 7 attributes. |
| # [too-many-instance-attributes] |
| # Allow longer modules than the default recommended maximum. |
| # Don't diplay statistics. Just the facts. |
| # Allow unused variables if their name starts with an underscore. |