summaryrefslogtreecommitdiff
path: root/chromium/components/sync_bookmarks/PRESUBMIT.py
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/sync_bookmarks/PRESUBMIT.py')
-rw-r--r--chromium/components/sync_bookmarks/PRESUBMIT.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/chromium/components/sync_bookmarks/PRESUBMIT.py b/chromium/components/sync_bookmarks/PRESUBMIT.py
index 44c9101cabe..ef269b0d3fa 100644
--- a/chromium/components/sync_bookmarks/PRESUBMIT.py
+++ b/chromium/components/sync_bookmarks/PRESUBMIT.py
@@ -13,16 +13,11 @@ import re
SYNC_BOOKMARKS_SOURCE_FILES = (
r'^components[\\/]sync_bookmarks[\\/].*\.(cc|h)$',)
-# The wrapper around lint that is called below disables a set of filters if the
-# passed filter evaluates to false. Pass a junk filter to avoid this behavior.
-LINT_FILTERS = ['+fake/filter']
-
def CheckChangeLintsClean(input_api, output_api):
source_filter = lambda x: input_api.FilterSourceFile(
x, white_list=SYNC_BOOKMARKS_SOURCE_FILES, black_list=None)
return input_api.canned_checks.CheckChangeLintsClean(
- input_api, output_api, source_filter, lint_filters=LINT_FILTERS,
- verbose_level=1)
+ input_api, output_api, source_filter, lint_filters=[], verbose_level=1)
def CheckChanges(input_api, output_api):
results = []