Added Snyk Code Parser#9647
Conversation
Contextual Security AnalysisAs DryRun Security performs checks, we’ll summarize them here. You can always dive into the detailed results in the section below for checks.
Chat with your AI-powered Security Buddy by typing Install and configure more repositories at DryRun Security |
|
Hi @grendel513, I would like to understand why you resolved my review. Could you please comment on that? Best Regards |
My comment specifically stated why: Keeping this a separate parser is the correct implementation to allow for its own deduplication which is what we are trying to solve for. Additionally having to individual parsers is easier to troubleshoot should issues arise, and has a the benefit of not affecting other tool ingestion if there is something wrong. Moving forward we will be asking that new parsers be single threaded in function, as having parsers that parse multiple file types creates issues with debugging, deduplication, and the ability to have a separate deduplication configuration. |
|
Hi there 👋, @DryRunSecurity here, below is a summary of our analysis and findings.
Note 🟢 Risk threshold not exceeded. Tip Get answers to your security questions. Add a comment in this PR starting with @DryRunSecurity. For example... Powered by DryRun Security |
Thank you for clarification. 😄 I understand your logic.
If you (the maintainers) will provide guidelines for the future setup regarding parsers and how to solve the problem the best way, I would like to help here to improve this. |
Added Snyk Code Parser
[sc-4509]
Description
A new
SnykCodeParserwas added and the deduplication is based onruleIDandURI(file_path).The unittests for this parser were added as well.
#9604