Skip to content

Commit 8031e9f

Browse files
committed
make perfer final issue type to CODE_SMELL
1 parent 613b294 commit 8031e9f

File tree

1 file changed

+3
-3
lines changed
  • dart-lang/src/main/resources/fr/insideapp/sonarqube/dart/dartanalyzer

1 file changed

+3
-3
lines changed

dart-lang/src/main/resources/fr/insideapp/sonarqube/dart/dartanalyzer/rules.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -753,21 +753,21 @@
753753
"name": "Prefer final fields",
754754
"description": "Private field could be final.",
755755
"severity": "MINOR",
756-
"type": "BUG"
756+
"type": "CODE_SMELL"
757757
},
758758
{
759759
"key": "prefer_final_in_for_each",
760760
"name": "Prefer final in for each",
761761
"description": "Prefer final in for-each loop variable if reference is not reassigned.",
762762
"severity": "MINOR",
763-
"type": "BUG"
763+
"type": "CODE_SMELL"
764764
},
765765
{
766766
"key": "prefer_final_locals",
767767
"name": "Prefer final locals",
768768
"description": "Prefer final for variable declarations if they are not reassigned.",
769769
"severity": "MINOR",
770-
"type": "BUG"
770+
"type": "CODE_SMELL"
771771
},
772772
{
773773
"key": "prefer_for_elements_to_map_fromIterable",

0 commit comments

Comments
 (0)