From 638a3b104e7fee779648aac4b769f914dfa7a019 Mon Sep 17 00:00:00 2001 From: Petr Pridal Date: Wed, 20 Jun 2012 11:39:28 +0200 Subject: [PATCH] Turn on WARNING for compilation on visibility and other compiler options. --- main.json | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/main.json b/main.json index e71fb6920a..73099fb5b5 100644 --- a/main.json +++ b/main.json @@ -15,17 +15,18 @@ "level": "VERBOSE", "checks": { - // "accessControls": "ERROR", - // "visibility": "ERROR" - // "checkTypes": "ERROR", - // "checkRegExp": "ERROR", - // "checkVars": "ERROR", - // "deprecated": "ERROR", - // "fileoverviewTags": "ERROR", - // "invalidCasts": "ERROR", - // "missingProperties": "ERROR", - // "nonStandardJsDocs": "ERROR", - // "undefinedVars": "ERROR" + // acceptable values are "ERROR", "WARNING", and "OFF" + "accessControls": "WARNING", + "visibility": "WARNING", + "checkTypes": "WARNING", + "checkRegExp": "WARNING", + "checkVars": "WARNING", + "deprecated": "WARNING", + "fileoverviewTags": "WARNING", + "invalidCasts": "WARNING", + "missingProperties": "WARNING", + "nonStandardJsDocs": "WARNING", + "undefinedVars": "WARNING" }, "jsdoc-html-output-path": "jsdoc"