Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(106)

Unified Diff: PRESUBMIT.py

Issue 1917223003: Disable whitespace/operators lint check. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Moved filter to a better place Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: PRESUBMIT.py
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index d2ab65f02608c63ae4e26d68aa4eec4460413ca7..d01850899049edde38cfcc11f5510e0a886f3457 100755
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -38,8 +38,11 @@ CPPLINT_DIRS = [
# - build/c++11 : Rvalue ref checks are unreliable (false positives),
# include file and feature blacklists are
# google3-specific.
+# - whitespace/operators: Same as above (doesn't seem sufficient to eliminate
+# all move-related errors).
BLACKLIST_LINT_FILTERS = [
'-build/c++11',
+ '-whitespace/operators',
]
# List of directories of "supported" native APIs. That means changes to headers
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698