Packages

@nuxt/eslint-config

Shared ESLint config for Nuxt 3 projects. Unopinionated by default, but customizable.

Shared ESLint config for Nuxt 3 projects. Unopinionated by default, but customizable.

We recommand to use directly the ESLint Module that will provide project-aware ESLint config and Nuxt DevTools integration on top of this config.
Source code on GitHub

Config Formats

This package provides two different ESLint configs:

Flat Config Format

The flat config format is the future of ESLint and is designed to be more flexible and project-aware. The entry @nuxt/eslint-config/flat provides a factory function to create a project-aware ESLint config for Nuxt 3 projects. It is unopinionated by default but customizable by passing options to the factory function. Used by @nuxt/eslint module to generate project-aware ESLint config.

  1. Install this package and eslint in your devDependencies.
yarn add --dev @nuxt/eslint-config eslint
  1. Import the config factory function from @nuxt/eslint-config/flat entry in your eslint.config.mjs:
eslint.config.mjs
import { createConfigForNuxt } from '@nuxt/eslint-config/flat'

export default createConfigForNuxt({
  // options here
})

You might also want to add a script entry to your package.json:

package.json
{
  "scripts": {
    "lint": "eslint ."
  }
}

Customizing the Config

Note that createConfigForNuxt() returns Promise<FlatConfig[]>. ESLint allows you to run the promise directly on the default export. If you want to combine with other configs, you will need await and spread the result. For example:

eslint.config.mjs
import { createConfigForNuxt } from '@nuxt/eslint-config/flat'

export default [
  ...await createConfigForNuxt({
    // options here
  }),
  // other configs
]
// (which uses Top-level await)

To make it easier, you can also use our helper defineFlatConfigs, which will also resolve and flatten the configs for you:

eslint.config.mjs
import { defineFlatConfigs, createConfigForNuxt } from '@nuxt/eslint-config/flat'

export default defineFlatConfigs(
  createConfigForNuxt({
    // options here
  }),
  // other configs
)

Legacy Config Format

The legacy config configures TypeScript and Vue integration for ESLint. It is unopinionated and static, and does not contains stylistic rules or project-aware settings.

  1. Install this package and eslint in your devDependencies.
yarn add --dev @nuxt/eslint-config eslint
  1. Extend the default Nuxt config by creating an .eslintrc.cjs:
.eslintrc.cjs
module.exports = {
  root: true,
  extends: ["@nuxt/eslint-config"],
};

You might also want to add a script entry to your package.json:

package.json
{
  "scripts": {
    "lint": "eslint ."
  }
}