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

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南