aboutsummaryrefslogtreecommitdiff
path: root/lib.bzl
diff options
context:
space:
mode:
authorThomas Van Lenten <thomasvl@google.com>2018-06-12 13:09:57 -0400
committerThomas Van Lenten <thomasvl@google.com>2018-06-13 10:58:35 -0400
commite5203c0f5d51cb263f6edc23b8b1722dcde0bd4e (patch)
tree082ad1c42957b69c0c69cc225ab0a12cee0e338a /lib.bzl
parenta5431b7babb0a646151ffcca7fef47399026448f (diff)
downloadbazel-skylib-e5203c0f5d51cb263f6edc23b8b1722dcde0bd4e.tar.gz
Reformat .bzl files with buildifier and add format check.
Buildifier 0.12.0 includes initial support for reformatting .bzl files. - Reformat all the bzl files. - Expand the travis check to check the .bzl files also.
Diffstat (limited to 'lib.bzl')
-rw-r--r--lib.bzl25
1 files changed, 12 insertions, 13 deletions
diff --git a/lib.bzl b/lib.bzl
index bf6bd42..bdea5ff 100644
--- a/lib.bzl
+++ b/lib.bzl
@@ -14,22 +14,21 @@
"""Index from which multiple modules can be loaded."""
-load("//lib:collections.bzl", _collections="collections")
-load("//lib:dicts.bzl", _dicts="dicts")
-load("//lib:new_sets.bzl", _new_sets="sets")
-load("//lib:partial.bzl", _partial="partial")
-load("//lib:paths.bzl", _paths="paths")
-load("//lib:selects.bzl", _selects="selects")
-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:collections.bzl", _collections = "collections")
+load("//lib:dicts.bzl", _dicts = "dicts")
+load("//lib:new_sets.bzl", _new_sets = "sets")
+load("//lib:partial.bzl", _partial = "partial")
+load("//lib:paths.bzl", _paths = "paths")
+load("//lib:selects.bzl", _selects = "selects")
+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")
# The unittest module is treated differently to give more convenient names to
# the assert functions, while keeping them in the same .bzl file.
-load("//lib:unittest.bzl", _asserts="asserts", _unittest="unittest")
-
+load("//lib:unittest.bzl", _asserts = "asserts", _unittest = "unittest")
collections = _collections
dicts = _dicts