summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVadim Bendebury <vbendeb@chromium.org>2020-04-17 14:16:07 -0700
committerCommit Bot <commit-bot@chromium.org>2020-04-23 02:47:08 +0000
commit6673f20ec210a8a055f8717ae9662ae4d818dbc3 (patch)
tree93ddaa54bf143d3ca09cd1e1f63c1838651b112a
parenteddf0be11907c7a61a3b5c01a62badd9ccc380b5 (diff)
downloadchrome-ec-6673f20ec210a8a055f8717ae9662ae4d818dbc3.tar.gz
.pylintrc: update list of suppressed messages
This patch sorts the list of the suppressed messages alphanumerically and adds 'missing-print-function' to the list, as this error does not apply to Python3. BUG=none TEST=linter error message R: 1, 0: Missing "from __future__ import print_function... is not reported any more, the rest of the linter output did not change. Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Change-Id: Ie97d88fcecfa70a89323d9122c3781e3da23f533 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2161575 Reviewed-by: Mary Ruthven <mruthven@chromium.org>
-rw-r--r--.pylintrc21
1 files changed, 11 insertions, 10 deletions
diff --git a/.pylintrc b/.pylintrc
index 167114aa5b..8e6c348a1e 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -72,19 +72,20 @@ enable=
zip-builtin-not-iterating,
disable=
- too-many-lines,
- too-many-branches,
- too-many-statements,
+ bad-continuation,
+ fixme,
+ invalid-name,
+ locally-disabled,
+ locally-enabled,
+ missing-print-function,
too-few-public-methods,
+ too-many-arguments,
+ too-many-branches,
too-many-instance-attributes,
- too-many-public-methods,
+ too-many-lines,
too-many-locals,
- too-many-arguments,
- locally-enabled,
- locally-disabled,
- fixme,
- bad-continuation,
- invalid-name,
+ too-many-public-methods,
+ too-many-statements,
[REPORTS]