blob: 298c4ac322e761470ec465c7af2149f8f8e4d546 [file] [log] [blame]
Geoffrey Martin-Noble11c07332021-05-04 20:30:33 -07001#!/bin/bash
2
Geoffrey Martin-Noble552d3f82021-05-25 17:56:09 -07003# Copyright 2021 The IREE Authors
Geoffrey Martin-Noble11c07332021-05-04 20:30:33 -07004#
Geoffrey Martin-Noble552d3f82021-05-25 17:56:09 -07005# Licensed under the Apache License v2.0 with LLVM Exceptions.
6# See https://llvm.org/LICENSE.txt for license information.
7# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Geoffrey Martin-Noble11c07332021-05-04 20:30:33 -07008
9# Checks buildifier formatting and lint in files modified vs the specified
10# reference commit (default "main")
11# See https://github.com/bazelbuild/buildtools/tree/master/buildifier
12
13set -o pipefail
14
15BASE_REF="${1:-main}"
16
17declare -a included_files_patterns=(
18 "/BUILD$"
19 "\.bazel$"
20 "/WORKSPACE$"
21 "\.bzl$"
22)
23
24declare -a excluded_files_patterns=(
25 "/third_party/"
26 "^third_party/"
27)
28
29# Join on |
30included_files_pattern="$(IFS="|" ; echo "${included_files_patterns[*]?}")"
31excluded_files_pattern="$(IFS="|" ; echo "${excluded_files_patterns[*]?}")"
32
33readarray -t files < <(\
34 (git diff --name-only --diff-filter=d "${BASE_REF}" || kill $$) \
35 | grep -E "${included_files_pattern?}" \
36 | grep -v -E "${excluded_files_pattern?}")
37
38if [ ${#files[@]} -eq 0 ]; then
39 echo "No Bazel files changed"
40 exit 0
41fi
42
43echo "Fixing formatting with Buildifier"
44buildifier "${files[@]}"
45
46echo "Fixing automatically fixable lint with Buildifier"
47buildifier -lint=fix "${files[@]}"
48
49echo "Checking complicated lint with Buildifier"
50# Sometimes people don't write docstrings and I am not going to make that
51# blocking.
52buildifier -lint=warn -warnings=-module-docstring,-function-docstring "${files[@]}"