From d96b1e84ca973254d5c4526f5f7df918f73a44b4 Mon Sep 17 00:00:00 2001 From: Hixie Date: Tue, 1 Sep 2015 13:22:44 -0700 Subject: [PATCH] Silence skyanalyzer's complaints about third-party packages. --- sky/tools/skyanalyzer | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sky/tools/skyanalyzer b/sky/tools/skyanalyzer index 366e4421dfb..a008066da48 100755 --- a/sky/tools/skyanalyzer +++ b/sky/tools/skyanalyzer @@ -36,6 +36,9 @@ _IGNORED_PATTERNS = [ re.compile(r'.*dart-pub-cache.*/mojo-'), re.compile(r'.*/mojo/public/dart/'), + # It'd be nice if the other packages we used didn't have warnings, too... + re.compile(r'.*/dart-pub-cache/hosted/pub.dartlang.org/'), + # TODO: Remove this once Sky no longer generates this warning. # dartbug.com/22836 re.compile(r'.*cannot both be unnamed'),