|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | PROPERTY | CONSTR | METHOD | DETAIL: FIELD | PROPERTY | CONSTR | METHOD |
java.lang.Objectorg.codenarc.rule.AbstractAstVisitorRule
groovy.org.codenarc.rule.dry.DuplicateStringLiteralRule
class DuplicateStringLiteralRule extends AbstractAstVisitorRule
Code containing duplicate String literals can usually be improved by declaring the String as a constant field.
Set the optionalignoreStrings
property to a comma-separated list (String) of
the strings that should be ignored by this rule (i.e., not cause a violation). This property
defaults to "" to ignore empty strings.
By default, this rule does not apply to test files.
Property Summary | |
---|---|
String |
doNotApplyToFilesMatching
|
String |
ignoreStrings
|
String |
name
|
int |
priority
|
Method Summary | |
---|---|
AstVisitor
|
getAstVisitor()
|
Property Detail |
---|
String doNotApplyToFilesMatching
String ignoreStrings
String name
int priority
Method Detail |
---|
@Override AstVisitor getAstVisitor()
Groovy Documentation