Index: third_party/closure_compiler/checker.py |
diff --git a/third_party/closure_compiler/checker.py b/third_party/closure_compiler/checker.py |
index be7b6f719aebf033ee2a1558a20d0823708d2fbe..5ae34951f399d68082667aed5c3d1f10d69ebbab 100644 |
--- a/third_party/closure_compiler/checker.py |
+++ b/third_party/closure_compiler/checker.py |
@@ -71,7 +71,9 @@ class Checker(object): |
"--jscomp_error=accessControls", |
"--jscomp_error=ambiguousFunctionDecl", |
"--jscomp_error=checkStructDictInheritance", |
- "--jscomp_error=checkTypes", |
+ # TODO(vitalyp): switch to jscomp_error after transition to new imports |
Dan Beam
2014/08/06 16:06:59
do we still need this?
Vitaly Pavlenko
2014/08/07 18:18:13
I removed it in Patch Set #6.
|
+ "--jscomp_warning=checkTypes", |
+ # "--jscomp_error=newCheckTypes", |
"--jscomp_error=checkVars", |
"--jscomp_error=constantProperty", |
"--jscomp_error=deprecated", |
@@ -79,7 +81,8 @@ class Checker(object): |
"--jscomp_error=globalThis", |
"--jscomp_error=invalidCasts", |
"--jscomp_error=misplacedTypeAnnotation", |
- "--jscomp_error=missingProperties", |
+ # TODO(vitalyp): switch to jscomp_error after transition to new imports |
+ "--jscomp_warning=missingProperties", |
"--jscomp_error=missingReturn", |
"--jscomp_error=nonStandardJsDocs", |
"--jscomp_error=suspiciousCode", |