Ignore space after module name (Rule module_identifier_matches_filename) · Issue #293 · dalance/svlint · GitHub
More Web Proxy on the site http://driver.im/
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
svlint a.sv ─╯
Fail: module_identifier_matches_filename
--> a.sv:3:1
|
3 | module a ();
| ^^^^^^ hint : Ensure that the module name matches the file name. module Bar should be in some/path/to/Bar.sv
| reason: Encourages consistent file naming standards for packages and assists in searching for modules.
The text was updated successfully, but these errors were encountered:
in a file a.sv
module a(... // Pass
module a (... // Fail
The text was updated successfully, but these errors were encountered: