blob: 118046233841707600d9084d6be1fba701674d14 [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/header_guard",
dan sinclair18540642018-06-05 21:36:50 -040023 "-build/include",
24 "-build/include_order",
25 "-build/include_what_you_use",
26 "-build/namespaces",
dan sinclair84846b72018-07-10 13:09:46 -040027 "-build/storage_class",
dan sinclair18540642018-06-05 21:36:50 -040028 "-readability/braces",
29 "-readability/casting",
30 "-readability/fn_size",
dan sinclair84846b72018-07-10 13:09:46 -040031 "-readability/inheritance",
dan sinclair18540642018-06-05 21:36:50 -040032 "-readability/todo",
33 "-runtime/explicit",
dan sinclair84846b72018-07-10 13:09:46 -040034 "-runtime/int",
35 "-runtime/printf",
dan sinclair18540642018-06-05 21:36:50 -040036 "-runtime/references",
dan sinclair84846b72018-07-10 13:09:46 -040037 "-runtime/string",
dan sinclair18540642018-06-05 21:36:50 -040038]
39
40
41def CheckChangeOnUpload(input_api, output_api):
42 results = []
43 results += input_api.canned_checks.CheckPatchFormatted(input_api, output_api)
44 results += input_api.canned_checks.CheckChangeLintsClean(
45 input_api, output_api, None, LINT_FILTERS)
46
47 return results