From da4f2b46b14abf50f490339e65ade8c7d175b883 Mon Sep 17 00:00:00 2001 From: Matan Lurey Date: Wed, 30 Aug 2023 12:45:44 -0700 Subject: [PATCH] Increase maximum length of function names from 30 to 60. --- .pylintrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pylintrc b/.pylintrc index 0803a4f4e3ef5..013763ac825d2 100644 --- a/.pylintrc +++ b/.pylintrc @@ -158,10 +158,10 @@ const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$ class-rgx=[A-Z_][a-zA-Z0-9]+$ # Regular expression which should only match correct function names -function-rgx=[a-z_][a-z0-9_]{2,30}$ +function-rgx=[a-z_][a-z0-9_]{2,60}$ # Regular expression which should only match correct method names -method-rgx=[a-z_][a-z0-9_]{2,30}$ +method-rgx=[a-z_][a-z0-9_]{2,60}$ # Regular expression which should only match correct instance attribute names attr-rgx=[a-z_][a-z0-9_]{2,30}$