Quick Start Guide
Get up and running with LegacyLint in minutes.
1. Install
Download the native CLI for your OS. No .NET SDK required.
$ curl -fL -H "X-LegacyLint-Key: $LEGACYLINT_KEY" -o legacylint.zip https://api.legacylint.com/api/downloads/cli/linux-x64
$ unzip legacylint.zip && chmod +x legacylint
Optionally, run a local scan to verify installation.
$ ./legacylint scan path/to/source
2. Scan a project
Point the scanner at a source directory. Delphi, Free Pascal and VB6 files are picked up together.
3. Baseline
Record your starting point so new regressions can be measured. This prevents getting burdened by existing issues.
$ ./legacylint scan --project MyApp.dproj --baseline main
4. Enforce budgets in CI
Run LegacyLint as part of your CI pipeline. Require new issues to be fixed by enforcing budgets.
Need help?