19 lines
500 B
TOML
19 lines
500 B
TOML
# 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/io_type_pkg.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
|