Modify Rule S1192: Add Dart language

This commit is contained in:
Marharyta Nedzelska 2024-08-12 15:06:46 +02:00 committed by Marharyta
parent 8e037685f0
commit d16db2b7ef
2 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,3 @@
{
}

View File

@ -0,0 +1,60 @@
== Why is this an issue?
include::../description.adoc[]
=== Exceptions
To prevent generating some false-positives, literals having 5 or less characters are excluded as well as literals containing only letters, digits and '_'.
== How to fix it
include::../howtofix.adoc[]
=== Code examples
==== Noncompliant code example
With the default threshold of 3:
[source,dart,diff-id=1,diff-type=noncompliant]
----
class A {
void run() {
prepare('string literal'); // Noncompliant - "string literal" is duplicated 3 times
execute('string literal');
release('string literal');
}
}
----
==== Compliant solution
[source,dart,diff-id=1,diff-type=compliant]
----
class A {
static const _const = 'string literal';
void run() {
prepare(_const); // Compliant
execute(_const);
release(_const);
}
}
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::../message.adoc[]
include::../parameters.adoc[]
include::../highlighting.adoc[]
'''
endif::env-github,rspecator-view[]