blob: dd3117f229e46116f9e8ad73d8c191b9868c567c [file] [log] [blame]
dan sinclair18540642018-06-05 21:36:50 -04001# Copyright (c) 2018 The Khronos Group Inc.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15"""Presubmit script for SPIRV-Tools.
16
17See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts
18for more details about the presubmit API built into depot_tools.
19"""
20
21LINT_FILTERS = [
dan sinclair84846b72018-07-10 13:09:46 -040022 "-build/storage_class",
dan sinclair18540642018-06-05 21:36:50 -040023 "-readability/casting",
24 "-readability/fn_size",
25 "-readability/todo",
26 "-runtime/explicit",
dan sinclair84846b72018-07-10 13:09:46 -040027 "-runtime/int",
28 "-runtime/printf",
dan sinclair18540642018-06-05 21:36:50 -040029 "-runtime/references",
dan sinclair84846b72018-07-10 13:09:46 -040030 "-runtime/string",
dan sinclair18540642018-06-05 21:36:50 -040031]
32
33
34def CheckChangeOnUpload(input_api, output_api):
35 results = []
36 results += input_api.canned_checks.CheckPatchFormatted(input_api, output_api)
37 results += input_api.canned_checks.CheckChangeLintsClean(
38 input_api, output_api, None, LINT_FILTERS)
39
40 return results