PRESUBMIT.py 372 B

123456789101112
  1. # Copyright 2017 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. USE_PYTHON3 = True
  5. PRESUBMIT_VERSION = '2.0.0'
  6. def CheckCommon(input_api, output_api):
  7. results = []
  8. results += input_api.canned_checks.CheckChangeLintsClean(
  9. input_api, output_api)
  10. return results