blob: 66eea201475705349ceb312c40a37963881f4e87 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
load("@com_github_bazelbuild_buildtools//buildifier:def.bzl", "buildifier")
# Run this to check for errors in BUILD files.
buildifier(
name = "buildifier",
exclude_patterns = [
"./hazel/packages.bzl",
],
mode = "check",
)
# Run this to fix the errors in BUILD files.
buildifier(
name = "buildifier-fix",
exclude_patterns = [
"./hazel/packages.bzl",
],
mode = "fix",
verbose = True,
)
|