Fix up lint issues. (#77)

Fixed via `buildifier --lint=fix` with buildifier 0.19.2.1
This commit is contained in:
Thomas Van Lenten 2018-11-26 17:31:29 -05:00 committed by c-parsons
parent d7c5518fa0
commit 8c575e737f
5 changed files with 7 additions and 7 deletions

4
BUILD
View File

@ -1,9 +1,9 @@
load("//:bzl_library.bzl", "bzl_library")
licenses(["notice"]) # Apache 2.0 licenses(["notice"]) # Apache 2.0
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
load("//:bzl_library.bzl", "bzl_library")
exports_files([ exports_files([
"LICENSE", "LICENSE",
"lib.bzl", "lib.bzl",

View File

@ -24,8 +24,8 @@ load("//lib:sets.bzl", _sets = "sets")
load("//lib:shell.bzl", _shell = "shell") load("//lib:shell.bzl", _shell = "shell")
load("//lib:structs.bzl", _structs = "structs") load("//lib:structs.bzl", _structs = "structs")
load("//lib:types.bzl", _types = "types") load("//lib:types.bzl", _types = "types")
load("//lib:versions.bzl", _versions = "versions")
load("//lib:unittest.bzl", _asserts = "asserts", _unittest = "unittest") load("//lib:unittest.bzl", _asserts = "asserts", _unittest = "unittest")
load("//lib:versions.bzl", _versions = "versions")
print( print(
"WARNING: lib.bzl is deprecated and will go away in the future, please" + "WARNING: lib.bzl is deprecated and will go away in the future, please" +

View File

@ -1,9 +1,9 @@
load("//:bzl_library.bzl", "bzl_library")
licenses(["notice"]) licenses(["notice"])
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
load("//:bzl_library.bzl", "bzl_library")
filegroup( filegroup(
name = "test_deps", name = "test_deps",
testonly = True, testonly = True,

View File

@ -19,8 +19,8 @@ functions to declare and define unit tests, and `asserts` which contains the
assertions used to within tests. assertions used to within tests.
""" """
load(":sets.bzl", "sets")
load(":new_sets.bzl", new_sets = "sets") load(":new_sets.bzl", new_sets = "sets")
load(":sets.bzl", "sets")
def _make(impl, attrs = None): def _make(impl, attrs = None):
"""Creates a unit test rule from its implementation function. """Creates a unit test rule from its implementation function.

View File

@ -1,10 +1,10 @@
load(":collections_tests.bzl", "collections_test_suite") load(":collections_tests.bzl", "collections_test_suite")
load(":dicts_tests.bzl", "dicts_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(":partial_tests.bzl", "partial_test_suite")
load(":paths_tests.bzl", "paths_test_suite") load(":paths_tests.bzl", "paths_test_suite")
load(":selects_tests.bzl", "selects_test_suite") load(":selects_tests.bzl", "selects_test_suite")
load(":sets_tests.bzl", "sets_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(":shell_tests.bzl", "shell_test_suite")
load(":structs_tests.bzl", "structs_test_suite") load(":structs_tests.bzl", "structs_test_suite")
load(":types_tests.bzl", "types_test_suite") load(":types_tests.bzl", "types_test_suite")