Eslint Report false possitive

0

I have an Eslint report that has one Finding, but is being analize and passed, when it should fail: Report Screen Capture

mmellaa
已提问 2 个月前126 查看次数
2 回答
0

Hello, there are a few things I would ask you to check:

  • Check the ESLint configuration file (typically .eslintrc file) and make sure the rules and severity levels are set up correctly. The rule corresponding to the finding may have been set to warn instead of error.
  • Check if there are any suppression comments added next to the lines triggering the finding. Suppression comments like /* eslint-disable */ can ignore rule violations on certain lines.
  • Check if there are any global suppression rules defined that may be overriding the severity of the finding. The AWS documentation mentions you can define suppression rules to ignore certain findings.
  • Ensure the ESLint plugin or library being used supports failing on certain severity levels. Some may not fail the build or analysis even if high severity issues are found.
  • Check the CLI command or configuration used to run ESLint. Options like --max-warnings could be preventing it from failing on warnings.
profile picture
专家
已回答 2 个月前
  • As you can see in the screen shot. There is one finding in that report. The finding severity is HIGH The success criteria is set to 0 findings with Low and above.

    The report should FAIL, but is not

-1

You will need to configure the success criteria from the workflow YAML to fail the report. Please follow this link.

已回答 2 个月前
  • It is already configured, that's why the text circled in red shows 0 findings as maximun

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则