From 650caeca0ba60a53caf034c6fe9948561fde0bc1 Mon Sep 17 00:00:00 2001 From: Guillaume Martres Date: Tue, 15 Oct 2013 15:43:42 -0700 Subject: [PATCH] lint-hunks: remove runtime/int filter There's no good reason to use types like long or short in new code. Change-Id: Ic6de6259d5a99b7af478e9c6ab74e65d81b022e2 --- tools/lint-hunks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/lint-hunks.py b/tools/lint-hunks.py index b15a69143..6e25d9362 100755 --- a/tools/lint-hunks.py +++ b/tools/lint-hunks.py @@ -24,7 +24,7 @@ TOPLEVEL_CMD = ["git", "rev-parse", "--show-toplevel"] DIFF_CMD = ["git", "diff"] DIFF_INDEX_CMD = ["git", "diff-index", "-u", "HEAD", "--"] SHOW_CMD = ["git", "show"] -CPPLINT_FILTERS = ["-readability/casting", "-runtime/int"] +CPPLINT_FILTERS = ["-readability/casting"] class Usage(Exception):