stackprobe audit
Run all checks on the current project.Options
--json
Type: booleanDefault:
false
Output results as JSON instead of the human-readable format. Useful for CI pipelines and automated processing.
- Parsing results in CI/CD workflows
- Integration with custom tooling
- Storing audit results in structured format
--fix
Type: booleanDefault:
falseStatus: Coming soon Attempt to auto-fix issues where possible.
The
--fix flag is currently in development and not yet functional.--only <checks>
Type: stringFormat: Comma-separated list
Available checks:
deps, env, license, engine, circular
Run only specific checks instead of all available checks.
Available Checks
| Check Name | Description |
|---|---|
license | Validates project license configuration |
env | Checks environment variable setup |
deps | Audits project dependencies |
engine | Verifies Node.js engine compatibility |
circular | Detects circular dependencies |
Usage Examples
Basic audit:Configuration
The--only flag can be combined with the ignore option in your configuration file. When both are present, --only takes precedence and the ignore list is not applied.
See the Configuration page for more details on configuring which checks run by default.