Skip to content

Commit 0db01d2

Browse files
authored
Merge branch 'main' into dependabot/maven/org.sonarsource.analyzer-commons-sonar-analyzer-commons-2.16.0.3141
2 parents 06e8674 + 06f3850 commit 0db01d2

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Ready to use binaries are available [from GitHub](https://github.com/green-code-
6565
|----------------|---------------------|--------------|
6666
| 1.4.+ | 9.4.+ LTS to 10.4.1 | 11 / 17 |
6767
| 1.5.+ | 9.9.+ LTS to 10.7.0 | 11 / 17 |
68-
| 2.0.+ | 9.4.+ LTS to 10.7.0 | 11 / 17 |
68+
| 2.0.+ | 9.9.+ LTS to 10.7.0 | 11 / 17 |
6969

7070
> Compatibility table of versions lower than 1.4.+ are available from the
7171
> main [creedengo repository](https://github.com/green-code-initiative/creedengo-rules-specifications#-plugins-version-compatibility).
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
def displayMessage(argument1):
2-
print(argument)
1+
def display_message(argument1):
2+
print(argument1)
33

4-
displayMessage(' sElEcT * fRoM myTable') # Noncompliant {{Don't use the query SELECT * FROM}}
5-
displayMessage(' sElEcT user fRoM myTable')
4+
display_message(' sElEcT * fRoM myTable') # Noncompliant {{Don't use the query SELECT * FROM}}
5+
display_message(' sElEcT user fRoM myTable')
66

77
requestNonCompiliant = ' SeLeCt * FrOm myTable' # Noncompliant {{Don't use the query SELECT * FROM}}
88
requestCompiliant = ' SeLeCt user FrOm myTable'
9-
displayMessage(requestNonCompiliant)
10-
displayMessage(requestCompiliant)
9+
display_message(requestNonCompiliant)
10+
display_message(requestCompiliant)

0 commit comments

Comments
 (0)