ref: 650caeca0ba60a53caf034c6fe9948561fde0bc1
parent: e4d12a1352009496c279d62c1375fc63f059e649
author: Guillaume Martres <[email protected]>
date: Tue Oct 15 11:43:42 EDT 2013
lint-hunks: remove runtime/int filter There's no good reason to use types like long or short in new code. Change-Id: Ic6de6259d5a99b7af478e9c6ab74e65d81b022e2
--- a/tools/lint-hunks.py
+++ b/tools/lint-hunks.py
@@ -24,7 +24,7 @@
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):