aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2022-06-04 09:32:02 +0200
committerTristan Gingold <tgingold@free.fr>2022-06-04 16:27:53 +0200
commitb0186f723301f9d7b82b831ed7690020d58768e6 (patch)
tree51e4731b1ad1907742e54ba00fee9ccfdf2518c0 /pyGHDL
parentedadae250a40a542af0c850b57d08f1d00067c25 (diff)
downloadghdl-b0186f723301f9d7b82b831ed7690020d58768e6.tar.gz
ghdl-b0186f723301f9d7b82b831ed7690020d58768e6.tar.bz2
ghdl-b0186f723301f9d7b82b831ed7690020d58768e6.zip
pyGHDL/lsp: enable warning for unassociated ports
Diffstat (limited to 'pyGHDL')
-rw-r--r--pyGHDL/lsp/workspace.py1
1 files changed, 1 insertions, 0 deletions
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: