Skip to main content
Short alias for monorepo:run with the command list fixed to lint. It runs the lint script across every package and module of your workspace, in dependency order, with a content-addressed task cache. Every other option is forwarded untouched.

Usage

talos lint [options]
This is equivalent to:
talos monorepo:run --commands=lint

Examples

Lint every package and module:
talos lint
Scope linting to specific modules and packages:
talos lint --modules=billing,user --packages=billing,user
Stream plain logs instead of the interactive view (for CI):
talos lint --logs
Force every task to re-run, ignoring the cache:
talos lint --no-cache

Options

OptionDescriptionDefault
--packagesComma-separated package names to include (under packages/).All packages and modules
--modulesComma-separated module names to include (under modules/).All packages and modules
--logsStream plain log lines instead of the interactive view.false
--no-cacheSkip reading and writing the task cache.false
Unlike monorepo:run, lint takes no --commands option — the command list is fixed to lint.
See the monorepo:run reference for the full details on execution order, caching, and output.