CheckSharp.Checks.Size
ClassNameLengthCheck
Checks that class names doe not exceed a given length. Long class names may suggest that a class may have to many responsibilities for example InvoiceMailWebServiceAndFtpSender indicates that this class should be split. Beside these reasons long class names make using the class cumbersome and reduce readability of your code.
Property | Default | Description |
---|---|---|
max | 40 |
LineLengthCheck
Checks that the length of line does not exceed a maximum value. Having long lines will reduce readability of your code.
Property | Default | Description |
---|---|---|
max | 120 |