1.4.2-alpha.0 • Published 2 years ago

@dcrtit/eslint-config-nuxt v1.4.2-alpha.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

@dcrtit/eslint-config-nuxt

Collection of rules based on eslint-plugin-nuxt.

Installation

Assuming you have eslint already installed:

npm i eslint-plugin-nuxt @dcrtit/eslint-config-nuxt -D

Usage

In your .eslintrc.js or whatsoever config file just simple extend your existing configuration with provided package:

module.exports = {
  extends: [
    // ...Other configs
    '@dcrtit/eslint-config-nuxt'
  ],
  rules: [
    // Your own rules' overrides, if needed
  ]
}