Fixup CQ and Kokoro lint mismatches.

The kokoro bots are running at a different level of verbosity than
the presubmit check. This CL ups the verbosity level for presubmit
to match kokoro and suppresses any new lint warnings which are
produced by the change.

The set of always removed filter options used by PRESUBMIT are
copied into the CPPLINT.cfg main file in order for kokoro to
match the errors presented by the CQ.

Bug: dawn:1339
Change-Id: I875a06bc2ed929d5dbaaa933282e3afa2559a7af
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/86627
Reviewed-by: Ben Clayton <bclayton@google.com>
Kokoro: Kokoro <noreply+kokoro@google.com>
Commit-Queue: Dan Sinclair <dsinclair@chromium.org>
diff --git a/tools/lint b/tools/lint
index 0aa38ba..94a96b6 100755
--- a/tools/lint
+++ b/tools/lint
@@ -27,6 +27,10 @@
 FILES="`find src/tint -type f` `find src/tint/cmd -type f`"
 FILES+="`find tools/src -type f` `find src/tint/cmd -type f`"
 
+# Note, there is currently no verbosity level set for cpplint.py which means
+# it will use the default level of 1. This level needs to match what is in the
+# PRESUBMIT.py file in order to report the same errors between CQ and Kokoro.
+
 if command -v go &> /dev/null; then
     # Go is installed. Run cpplint in parallel for speed wins
     go run $SCRIPT_DIR/src/cmd/run-parallel/main.go \