From a9f1e0fb377c0edc813dafc0fbfdeb9186594047 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20=C3=96rtenberg?= Date: Thu, 6 Mar 2025 15:38:20 +0100 Subject: [PATCH] vhdl_ls configuration --- src/vhdl_ls.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/vhdl_ls.toml diff --git a/src/vhdl_ls.toml b/src/vhdl_ls.toml new file mode 100644 index 0000000..b7085cb --- /dev/null +++ b/src/vhdl_ls.toml @@ -0,0 +1,18 @@ +# What standard to use. This is optional and defaults to VHDL2008. +standard = "1993" +# File names are either absolute or relative to the parent folder of the vhdl_ls.toml file +[libraries] +ganimede.files = [ + 'ganimede/*.vhd' +] +socbridge.files = [ + 'socbridge/*.vhd' +] + +controller.files = [ + 'controller/*.vhd', +] + +[lint] +unused = 'error' # Upgrade the 'unused' diagnostic to the 'error' severity +unnecessary_work_library = false # Disable linting for the 'library work;' statement