You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was integrating this verible tool in our flow for formatting especially for indentation! When I tried executing verible-verilog-format --inplace . I can see files which has syntax issues are not getting formatted and tool is firing syntax issues.
Can we have a flag to disable syntax issues and do regular formatting for them! I have tried to disable syntax error prints from verilog-format.cc by adding a quiet flag. By this tool stopped firing syntax issues but its not formatting it! Can you please check as its benifical for all sv coders whose code is not required for synthesies!
Example:
File which has this kind of format has syntax issues!
interface my_interface()
logic signal_1;
`ifdef DEFINED
logic signal_2;
`endif
endinterface