Skip to content

Commit

Permalink
add pmd7 and eslint9 to the workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
DMarinhoCodacy committed Feb 3, 2025
1 parent 4df9636 commit 2e37ed3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tools/check-security-tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ def check_security_tools():
# Hack to ensure that Pylint is detected
if tool_short_name == "pylintpython3":
tool_name = "Pylint"
if tool_short_name == "ESLint9":
tool_name = "ESLint"
if tool_short_name == "PMD7":
tool_name = "PMD"
tool_languages = tool["languages"]
cursor = True
code_patterns = []
Expand Down
4 changes: 4 additions & 0 deletions tools/check-supported-tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ def check_supported_tools():
# Hack to ensure that Pylint is detected
if tool_short_name == "pylintpython3":
tool_name = "Pylint"
if tool_short_name == "ESLint9":
tool_name = "ESLint"
if tool_short_name == "PMD7":
tool_name = "PMD"
tool_languages = tool["languages"]
if tool_name.lower() in documentation or tool_short_name.lower() in documentation:
print(emoji.emojize(f":check_mark_button: {tool_name} is included "
Expand Down

0 comments on commit 2e37ed3

Please sign in to comment.