You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Document skip configuration for acknowledging findings (#364)
* Document skip configuration for acknowledging findings
Add "Acknowledging Findings" section to README.md to improve
discoverability of the existing skip configuration feature.
This allows users to suppress false positives or accepted risks.
Includes:
- Use case explanations for when to skip findings
- Complete documentation of all filter options (job, level, path,
rule, purl, osv_id)
- Practical examples showing how to skip by severity level,
workflow path, and rule name
Fixes#40
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>
* Document --skip command-line flag for acknowledging findings
Add documentation for the --skip command-line flag in both the Configuration
Options section and the Acknowledging Findings section. Clarify that the
command-line flag only supports skipping rules globally by name, while the
configuration file supports granular filtering by job, path, level, etc.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>
---------
Co-authored-by: François Proulx <[email protected]>
Co-authored-by: Claude <[email protected]>
For more examples, see [.poutine.sample.yml](.poutine.sample.yml).
245
+
246
+
#### Command Line
247
+
248
+
You can also skip rules on the command line using the `--skip` flag. Note that the command-line flag only supports skipping rules by name globally and does not support the granular filtering options (job, path, level, etc.) available in the configuration file.
This is useful for one-time analysis or when you want to temporarily ignore specific rules without modifying your configuration file. For more granular control (e.g., skipping a rule only in specific workflows), use the configuration file instead.
259
+
197
260
## AI Coding Assistant Integration (MCP)
198
261
199
262
`poutine`can be integrated with AI coding assistants like Claude Code, Gemini, etc. through the Model Context Protocol (MCP). This allows AI assistants to analyze repositories and validate CI/CD pipelines directly from your development environment.
0 commit comments