Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: use new nuxi module add command in installation #129

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@ npm install -D eslint
With `pnpm`

danielroe marked this conversation as resolved.
Show resolved Hide resolved
```bash
pnpm add -D @nuxtjs/eslint-module
npx nuxi@latest module add eslint
```

Or, with `yarn`

```bash
danielroe marked this conversation as resolved.
Show resolved Hide resolved
yarn add -D @nuxtjs/eslint-module
npx nuxi@latest module add eslint
```

Or, with `npm`

```bash
danielroe marked this conversation as resolved.
Show resolved Hide resolved
npm install -D @nuxtjs/eslint-module
npx nuxi@latest module add eslint
danielroe marked this conversation as resolved.
Show resolved Hide resolved
```

2. Add `@nuxtjs/eslint-module` to the `modules` section of `nuxt.config.ts`
Expand Down