| Index: PRESUBMIT.py
|
| diff --git a/PRESUBMIT.py b/PRESUBMIT.py
|
| index b79316a9152902f8debe4d1708e8970aded2bf1a..3b3c679601f3455f7dca2f3b2e0adf7b769f3004 100644
|
| --- a/PRESUBMIT.py
|
| +++ b/PRESUBMIT.py
|
| @@ -38,6 +38,10 @@ PYLINT_DISABLED_WARNINGS = [
|
| 'W0613',
|
| # String has no effect (docstring in wrong place).
|
| 'W0105',
|
| + # map/filter on lambda could be replaced by comprehension.
|
| + 'W0110',
|
| + # Use of eval.
|
| + 'W0123',
|
| # Comma not followed by space.
|
| 'C0324',
|
| # Access to a protected member.
|
| @@ -54,6 +58,8 @@ PYLINT_DISABLED_WARNINGS = [
|
| 'E1101',
|
| # Dangerous default {}.
|
| 'W0102',
|
| + # Cyclic import.
|
| + 'R0401',
|
| # Others, too many to sort.
|
| 'W0201', 'W0232', 'E1103', 'W0621', 'W0108', 'W0223', 'W0231',
|
| 'R0201', 'E0101', 'C0321',
|
|
|