Skip to content

Commit 896cdbb

Browse files
add pmd7 and eslint9 to the workflows (#2336)
1 parent 4df9636 commit 896cdbb

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

tools/check-security-tools.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ def check_security_tools():
3232
# Hack to ensure that Pylint is detected
3333
if tool_short_name == "pylintpython3":
3434
tool_name = "Pylint"
35+
if tool_short_name == "ESLint9":
36+
tool_name = "ESLint"
37+
if tool_short_name == "PMD7":
38+
tool_name = "PMD"
3539
tool_languages = tool["languages"]
3640
cursor = True
3741
code_patterns = []

tools/check-supported-tools.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ def check_supported_tools():
2929
# Hack to ensure that Pylint is detected
3030
if tool_short_name == "pylintpython3":
3131
tool_name = "Pylint"
32+
if tool_short_name == "ESLint9":
33+
tool_name = "ESLint"
34+
if tool_short_name == "PMD7":
35+
tool_name = "PMD"
3236
tool_languages = tool["languages"]
3337
if tool_name.lower() in documentation or tool_short_name.lower() in documentation:
3438
print(emoji.emojize(f":check_mark_button: {tool_name} is included "

0 commit comments

Comments
 (0)