From fad0061928a407744e8395eb8fe297846f022348 Mon Sep 17 00:00:00 2001 From: David Ostrovsky Date: Thu, 26 Dec 2019 10:46:22 +0100 Subject: [PATCH] Bazel: Remove suppression of JSC_REFERENCE_BEFORE_DECLARE Change-Id: I10c99e9f6a9bcabb7c55a92162a452d5424e7b97 --- polygerrit-ui/app/rules.bzl | 3 --- 1 file changed, 3 deletions(-) diff --git a/polygerrit-ui/app/rules.bzl b/polygerrit-ui/app/rules.bzl index e1304e6aeb..4c16c914e9 100644 --- a/polygerrit-ui/app/rules.bzl +++ b/polygerrit-ui/app/rules.bzl @@ -21,8 +21,6 @@ def polygerrit_bundle(name, srcs, outs, app): deps = [name + "_closure_lib"], ) - # TODO(davido): Remove JSC_REFERENCE_BEFORE_DECLARE when this is fixed upstream: - # https://github.com/Polymer/polymer-resin/issues/7 closure_js_library( name = name + "_closure_lib", srcs = [appName + ".js"], @@ -31,7 +29,6 @@ def polygerrit_bundle(name, srcs, outs, app): # and remove this supression suppress = [ "JSC_JSDOC_MISSING_TYPE_WARNING", - "JSC_REFERENCE_BEFORE_DECLARE", "JSC_UNNECESSARY_ESCAPE", "JSC_UNUSED_LOCAL_ASSIGNMENT", ],