Run all linters and/or formatters in check mode.
Config section: <span style="color: purple"><code>[lint]</code></span>
## Basic options
None
## Advanced options
<div style="color: purple"> <h3><code>per_file_caching</code></h3> <code>--[no-]lint-per-file-caching</code><br> <code>PANTS_LINT_PER_FILE_CACHING</code><br> </div> <div style="padding-left: 2em;"> <span style="color: green">default: <code>False</code></span>
<br>
Rather than linting all files in a single batch, lint each file as a separate process.
Why do this? You'll get many more cache hits. Why not do this? Linters both have substantial startup overhead and are cheap to add one additional file to the run. On a cold cache, it is much faster to use `--no-per-file-caching
`.
We only recommend using `--per-file-caching
` if you are using a remote cache or if you have benchmarked that this option will be faster than `--no-per-file-caching
` for your use case.
</div> <br>
## Deprecated options
None