parallel-lint
checks PHP files for syntax errors in parallel
TLDR
Lint PHP files
$ parallel-lint [src/]
Lint with exclusions$ parallel-lint --exclude [vendor] [.]
Lint with specific PHP version$ parallel-lint --php [/usr/bin/php8.1] [src/]
Lint with blame output$ parallel-lint --blame [src/]
SYNOPSIS
parallel-lint [options] paths...
DESCRIPTION
parallel-lint checks PHP files for syntax errors in parallel. Fast syntax checking across multiple files and directories. Does not check code style, only syntax validity.
PARAMETERS
--exclude path
Exclude path from checking.--php binary
PHP binary to use.-j num
Number of parallel jobs.--blame
Show git blame for errors.--colors
Force colored output.-e ext
File extensions to check.
