From b0186f723301f9d7b82b831ed7690020d58768e6 Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Sat, 4 Jun 2022 09:32:02 +0200 Subject: pyGHDL/lsp: enable warning for unassociated ports --- pyGHDL/lsp/workspace.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyGHDL/lsp/workspace.py b/pyGHDL/lsp/workspace.py index ec10d4821..54fa17ce6 100644 --- a/pyGHDL/lsp/workspace.py +++ b/pyGHDL/lsp/workspace.py @@ -54,6 +54,7 @@ class Workspace(object): # Do not consider analysis order issues. flags.Flag_Elaborate_With_Outdated.value = True libghdl.errorout.Enable_Warning(errorout.Msgid.Warnid_Unused, True) + libghdl.errorout.Enable_Warning(errorout.Msgid.Warnid_No_Assoc, True) self.read_project() self.set_options_from_project() if libghdl.analyze_init_status() != 0: -- cgit v1.2.3