From 68f493fc90ac2adef32d85e38e325943d1b74331 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Mon, 16 Jan 2017 08:41:35 +0100 Subject: [PATCH] Revert "Remove 'analyzerChecks' from jscomp_off compiler option" This reverts commit 56320844419899dccbf5f538b5c9112b08d7ce0d. --- config/example.json | 1 + config/examples-all.json | 3 ++- config/ol.json | 3 ++- doc/tutorials/closure.md | 3 ++- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/config/example.json b/config/example.json index dff7c67e16..d034d67b76 100644 --- a/config/example.json +++ b/config/example.json @@ -28,6 +28,7 @@ ], "jscomp_off": [ "lintChecks", + "analyzerChecks", "missingProvide", "unknownDefines" ], diff --git a/config/examples-all.json b/config/examples-all.json index 3c66049069..3544621ee9 100644 --- a/config/examples-all.json +++ b/config/examples-all.json @@ -27,7 +27,8 @@ "*" ], "jscomp_off": [ - "lintChecks" + "lintChecks", + "analyzerChecks" ], "extra_annotation_name": [ "api", "observable" diff --git a/config/ol.json b/config/ol.json index 044957ae2c..90b8893824 100644 --- a/config/ol.json +++ b/config/ol.json @@ -21,7 +21,8 @@ "*" ], "jscomp_off": [ - "lintChecks" + "lintChecks", + "analyzerChecks" ], "extra_annotation_name": [ "api", "observable" diff --git a/doc/tutorials/closure.md b/doc/tutorials/closure.md index 723b915003..7221445bef 100644 --- a/doc/tutorials/closure.md +++ b/doc/tutorials/closure.md @@ -230,7 +230,8 @@ Here is a version of `config.json` with more compilation checks enabled: ], "jscomp_off": [ "unknownDefines", - "lintChecks" + "lintChecks", + "analyzerChecks" ], "extra_annotation_name": [ "api", "observable"