Increase maximum length of function names from 30 to 60. (#45296)
Unblocks https://github.com/flutter/engine/pull/45243, which adds the function:
```py
def `gather_build_bucket_golden_scraper_tests`():
```
diff --git a/.pylintrc b/.pylintrc
index 0803a4f..013763a 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -158,10 +158,10 @@
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}$