diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2025-05-04 13:51:11 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2025-05-04 13:51:11 -0400 |
commit | dbcea96aadb0ee7addcdb0bd0a5bfda6f5cd93e8 (patch) | |
tree | 802490dc09d90ca9c4bfd597a02b25f4c04b2ebb | |
parent | b6e76bbdea1acf7a634c242f3118fdd79f569fc1 (diff) |
Stop dual wielding LSPs
-rw-r--r-- | .hdl_checker.config | 13 | ||||
-rw-r--r-- | pb_APP_log_comb.srcs/sources_1/new/Add1BitA.vhd | 1 | ||||
-rw-r--r-- | vhdl_ls.toml | 9 |
3 files changed, 9 insertions, 14 deletions
diff --git a/.hdl_checker.config b/.hdl_checker.config deleted file mode 100644 index da7b6c4..0000000 --- a/.hdl_checker.config +++ /dev/null @@ -1,13 +0,0 @@ -{ - "sources": [ - [ "src/**/*.vhd", { "library": "work", "flags": ["-2008"] } ], - [ "lib/**/*.vhd", { "library": "work", "flags": ["-2008"] } ] - ], - "vhdl": { - "flags": { - "single": ["-2008"], - "dependencies": [], - "global": [] - } - } -} diff --git a/pb_APP_log_comb.srcs/sources_1/new/Add1BitA.vhd b/pb_APP_log_comb.srcs/sources_1/new/Add1BitA.vhd index ca031bb..e3c3e53 100644 --- a/pb_APP_log_comb.srcs/sources_1/new/Add1BitA.vhd +++ b/pb_APP_log_comb.srcs/sources_1/new/Add1BitA.vhd @@ -18,7 +18,6 @@ -- ------------------------------------------------------------------------------- - library IEEE; use IEEE.STD_LOGIC_1164.ALL; diff --git a/vhdl_ls.toml b/vhdl_ls.toml index d481c37..b450102 100644 --- a/vhdl_ls.toml +++ b/vhdl_ls.toml @@ -14,6 +14,15 @@ UNISIM.files = [ ] UNISIM.is_third_party = true +IEEE.files = [ + "/tools/ghdl/libraries/ieee2008/*.vhdl", + "/tools/ghdl/libraries/ieee/*.vhdl", + # "/tools/ghdl +] +IEEE.is_third_party = true + + + [lint] unused = "error" unnecessary_work_library = false |