diff options
author | Simon Warta <[email protected]> | 2017-04-05 00:07:42 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2017-04-07 09:10:13 +0200 |
commit | 8c38a8b35846ca36b83138d92397190168cd5b14 (patch) | |
tree | 0fafd4e79b20602c584895fe5717cd91c41bdc52 /.pylintrc | |
parent | 7bdffd52a96e08e9452d1985258376a3925a497b (diff) |
Convert gen_cmake() into class
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -153,10 +153,10 @@ inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$ inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$ # Regular expression matching correct method names -method-rgx=[a-z_][a-z0-9_]{2,30}$ +method-rgx=[a-z_][a-z0-9_]{2,45}$ # Naming hint for method names -method-name-hint=[a-z_][a-z0-9_]{2,30}$ +method-name-hint=[a-z_][a-z0-9_]{2,45}$ # Regular expression matching correct constant names const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$ |