mirror of
https://github.com/github/codeql.git
synced 2026-02-19 00:13:44 +01:00
17 lines
331 B
Python
17 lines
331 B
Python
load("@buildifier_prebuilt//:rules.bzl", "buildifier")
|
|
|
|
buildifier(
|
|
name = "buildifier",
|
|
exclude_patterns = [
|
|
"./.git/*",
|
|
],
|
|
lint_mode = "fix",
|
|
)
|
|
|
|
sh_library(
|
|
name = "sh_runfiles",
|
|
srcs = ["runfiles.sh"],
|
|
visibility = ["//visibility:public"],
|
|
deps = ["@bazel_tools//tools/bash/runfiles"],
|
|
)
|