1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-10 13:00:37 +00:00

Add setting to exclude addons from script warnings

(cherry picked from commit d7137a6b72)
This commit is contained in:
mashumafi
2019-11-07 23:01:22 -05:00
committed by Rémi Verschelde
parent ad1e8069d3
commit 717c492eb6
2 changed files with 4 additions and 0 deletions

View File

@@ -2134,6 +2134,7 @@ GDScriptLanguage::GDScriptLanguage() {
#ifdef DEBUG_ENABLED
GLOBAL_DEF("debug/gdscript/warnings/enable", true);
GLOBAL_DEF("debug/gdscript/warnings/treat_warnings_as_errors", false);
GLOBAL_DEF("debug/gdscript/warnings/exclude_addons", true);
GLOBAL_DEF("debug/gdscript/completion/autocomplete_setters_and_getters", false);
for (int i = 0; i < (int)GDScriptWarning::WARNING_MAX; i++) {
String warning = GDScriptWarning::get_name_from_code((GDScriptWarning::Code)i).to_lower();