From 1d01871c1e7ffdc65f5eaa11cdb40bace876d277 Mon Sep 17 00:00:00 2001 From: "danakj@chromium.org" Date: Mon, 11 Jan 2016 19:35:02 +0000 Subject: [PATCH] Remove readability/inheritance from the lint blacklist Now that we're using real override/final and not also using virtual on the same methods, this transitional blacklist can go away. R=agable, dcheng Review URL: https://codereview.chromium.org/1564403003 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@298201 0039d316-1c4b-4281-b951-d872f2087c98 --- presubmit_canned_checks.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/presubmit_canned_checks.py b/presubmit_canned_checks.py index 7a6f8b57f7..b18e18f4e8 100644 --- a/presubmit_canned_checks.py +++ b/presubmit_canned_checks.py @@ -16,8 +16,6 @@ _HERE = _os.path.dirname(_os.path.abspath(__file__)) # - runtime/int : Can be fixed long term; volume of errors too high # - runtime/virtual : Broken now, but can be fixed in the future? # - whitespace/braces : We have a lot of explicit scoping in chrome code. -# - readability/inheritance : Temporary, while the OVERRIDE and FINAL fixup -# is in progress. DEFAULT_LINT_FILTERS = [ '-build/include', '-build/include_order', @@ -26,7 +24,6 @@ DEFAULT_LINT_FILTERS = [ '-runtime/int', '-runtime/virtual', '-whitespace/braces', - '-readability/inheritance' ] ### Description checks