style: enforce buildifier lint rules (#29019)

PR Close #29019
This commit is contained in:
Wassim Chegham
2019-02-28 01:12:05 +01:00
committed by Igor Minar
parent b06847f43d
commit 9226b421e8
32 changed files with 41 additions and 54 deletions

View File

@ -1,6 +1,6 @@
package(default_visibility = ["//visibility:public"])
load("//tools:defaults.bzl", "ng_module", "ts_library")
load("//tools:defaults.bzl", "ng_module")
ng_module(
name = "app",

View File

@ -1,7 +1,6 @@
package(default_visibility = ["//visibility:public"])
load("//tools:defaults.bzl", "ng_module")
load("//packages/bazel/src:ng_rollup_bundle.bzl", "ng_rollup_bundle")
ng_module(
name = "app",

View File

@ -1,6 +1,6 @@
package(default_visibility = ["//visibility:public"])
load("//tools:defaults.bzl", "jasmine_node_test", "ts_library")
load("//tools:defaults.bzl", "ts_library")
ts_library(
name = "ngcc",

View File

@ -4,8 +4,7 @@ load("//tools:defaults.bzl", "ts_library")
ts_library(
name = "annotations",
srcs = glob([
"index.ts",
srcs = ["index.ts"] + glob([
"src/**/*.ts",
]),
deps = [

View File

@ -4,8 +4,7 @@ load("//tools:defaults.bzl", "ts_library")
ts_library(
name = "diagnostics",
srcs = glob([
"index.ts",
srcs = ["index.ts"] + glob([
"src/**/*.ts",
]),
deps = [

View File

@ -4,8 +4,7 @@ load("//tools:defaults.bzl", "ts_library")
ts_library(
name = "host",
srcs = glob([
"index.ts",
srcs = ["index.ts"] + glob([
"src/**/*.ts",
]),
deps = ["@ngdeps//typescript"],

View File

@ -4,8 +4,7 @@ load("//tools:defaults.bzl", "ts_library")
ts_library(
name = "metadata",
srcs = glob([
"index.ts",
srcs = ["index.ts"] + glob([
"src/*.ts",
]),
deps = [

View File

@ -4,8 +4,7 @@ load("//tools:defaults.bzl", "ts_library")
ts_library(
name = "shims",
srcs = glob([
"index.ts",
srcs = ["index.ts"] + glob([
"src/**/*.ts",
]),
deps = [

View File

@ -4,8 +4,7 @@ load("//tools:defaults.bzl", "ts_library")
ts_library(
name = "switch",
srcs = glob([
"index.ts",
srcs = ["index.ts"] + glob([
"src/**/*.ts",
]),
deps = [

View File

@ -4,8 +4,7 @@ load("//tools:defaults.bzl", "ts_library")
ts_library(
name = "transform",
srcs = glob([
"index.ts",
srcs = ["index.ts"] + glob([
"src/**/*.ts",
]),
deps = [

View File

@ -5,7 +5,6 @@ load("//tools:defaults.bzl", "ts_library")
ts_library(
name = "util",
srcs = glob([
"index.ts",
"src/**/*.ts",
]),
deps = [