Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/dalance/svlint
Browse files Browse the repository at this point in the history
  • Loading branch information
dalance committed Mar 5, 2021
2 parents 88c27f9 + fe6681c commit bbb5656
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions RULES.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,33 @@ end
endmodule
```

## default_nettype_none

### Description

`` `default_nettype none`` should be at the top of source code

### Reason

`` `default_nettype none`` can detect unintentional implicit wires

### Pass example

```SystemVerilog
`default_nettype none
module A;
endmodule
```

### Fail example

```SystemVerilog
module A;
endmodule
```

## enum_with_type

### Description
Expand Down

0 comments on commit bbb5656

Please sign in to comment.