Turn on WARNING for compilation on visibility and other compiler options.

This commit is contained in:
Petr Pridal
2012-06-20 11:39:28 +02:00
parent e0d444551c
commit 638a3b104e

View File

@@ -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"