Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Unified Diff: pkg/polymer/lib/src/build/common.dart

Issue 179163007: [polymer] skip linter in tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/polymer/lib/deploy.dart ('k') | pkg/polymer/lib/transformer.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/polymer/lib/src/build/common.dart
diff --git a/pkg/polymer/lib/src/build/common.dart b/pkg/polymer/lib/src/build/common.dart
index b1a7851b7141f07764ae3a52a7df1e167e51da8e..aed6bafe59f078abfbcbb77654c755f962180350 100644
--- a/pkg/polymer/lib/src/build/common.dart
+++ b/pkg/polymer/lib/src/build/common.dart
@@ -64,8 +64,11 @@ class TransformOptions {
/// minified versions of the polyfills rather than the debug versions.
final bool releaseMode;
+ /// True to run liner on all html files before starting other phasese.
Siggi Cherem (dart-lang) 2014/02/26 22:39:38 phasese => phases
Jennifer Messerly 2014/02/28 03:00:23 Done. Also added bug reference.
+ final bool lint;
+
TransformOptions({entryPoints, this.contentSecurityPolicy: false,
- this.directlyIncludeJS: true, this.releaseMode: true})
+ this.directlyIncludeJS: true, this.releaseMode: true, this.lint: true})
: entryPoints = entryPoints == null ? null
: entryPoints.map(_systemToAssetPath).toList();
« no previous file with comments | « pkg/polymer/lib/deploy.dart ('k') | pkg/polymer/lib/transformer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698