We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4e6994 commit 4140405Copy full SHA for 4140405
1 file changed
tools/build/dartanalyzer.js
@@ -200,6 +200,11 @@ _AnalyzerOutputLine.prototype = {
200
return true;
201
}
202
203
+ // Don't worry about warnings in external code.
204
+ if (this.sourcePath.match(/benchmarks_external/i)) {
205
+ return true;
206
+ }
207
+
208
if (this.errorCode.match(/UNUSED_SHOWN_NAME/i)) {
209
// TODO: Narrow this ignore down to test code only.
210
// See https://github.com/angular/angular/issues/8044
0 commit comments