nx/docs/shared/packages/linter/linter-plugin.md
Benjamin Cabanes ae8e0280fd
docs(core): move package documents into its own folder (#13935)
Signed-off-by: Ben <3447705+bcabanes@users.noreply.github.com>
2022-12-20 14:21:42 -05:00

742 B

The Linter plugin contains executors, generator, plugin and utilities used for linting JavaScript/TypeScript projects within an Nx workspace.

Setting Up Linter

Installation

In any Nx workspace, you can install @nrwl/linter by running the following commands if @nrwl/linter package is not installed:

npm i --save-dev @nrwl/linter
yarn add --dev @nrwl/linter

Lint

You can lint an application or a library with the following command:

nx lint my-app
nx lint my-lib

Utils