Fix up lint issues. (#77)
Fixed via `buildifier --lint=fix` with buildifier 0.19.2.1
This commit is contained in:
parent
d7c5518fa0
commit
8c575e737f
4
BUILD
4
BUILD
|
@ -1,9 +1,9 @@
|
|||
load("//:bzl_library.bzl", "bzl_library")
|
||||
|
||||
licenses(["notice"]) # Apache 2.0
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
load("//:bzl_library.bzl", "bzl_library")
|
||||
|
||||
exports_files([
|
||||
"LICENSE",
|
||||
"lib.bzl",
|
||||
|
|
2
lib.bzl
2
lib.bzl
|
@ -24,8 +24,8 @@ load("//lib:sets.bzl", _sets = "sets")
|
|||
load("//lib:shell.bzl", _shell = "shell")
|
||||
load("//lib:structs.bzl", _structs = "structs")
|
||||
load("//lib:types.bzl", _types = "types")
|
||||
load("//lib:versions.bzl", _versions = "versions")
|
||||
load("//lib:unittest.bzl", _asserts = "asserts", _unittest = "unittest")
|
||||
load("//lib:versions.bzl", _versions = "versions")
|
||||
|
||||
print(
|
||||
"WARNING: lib.bzl is deprecated and will go away in the future, please" +
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
load("//:bzl_library.bzl", "bzl_library")
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
load("//:bzl_library.bzl", "bzl_library")
|
||||
|
||||
filegroup(
|
||||
name = "test_deps",
|
||||
testonly = True,
|
||||
|
|
|
@ -19,8 +19,8 @@ functions to declare and define unit tests, and `asserts` which contains the
|
|||
assertions used to within tests.
|
||||
"""
|
||||
|
||||
load(":sets.bzl", "sets")
|
||||
load(":new_sets.bzl", new_sets = "sets")
|
||||
load(":sets.bzl", "sets")
|
||||
|
||||
def _make(impl, attrs = None):
|
||||
"""Creates a unit test rule from its implementation function.
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
load(":collections_tests.bzl", "collections_test_suite")
|
||||
load(":dicts_tests.bzl", "dicts_test_suite")
|
||||
load(":new_sets_tests.bzl", "new_sets_test_suite")
|
||||
load(":partial_tests.bzl", "partial_test_suite")
|
||||
load(":paths_tests.bzl", "paths_test_suite")
|
||||
load(":selects_tests.bzl", "selects_test_suite")
|
||||
load(":sets_tests.bzl", "sets_test_suite")
|
||||
load(":new_sets_tests.bzl", "new_sets_test_suite")
|
||||
load(":shell_tests.bzl", "shell_test_suite")
|
||||
load(":structs_tests.bzl", "structs_test_suite")
|
||||
load(":types_tests.bzl", "types_test_suite")
|
||||
|
|
Loading…
Reference in New Issue