1.1.0 • Published 3 years ago

@tabianco/eslint-config v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Nuxt ESLint Config

GitHub Actions npm (scoped with tag) npm

ESlint config used for Nuxt.js.

Usage

Do you want to add the config to your own projects? There you go:

  1. Add this package to your devDependencies
$ npm i -D @tabianco/eslint-config
# or
$ yarn add -D @tabianco/eslint-config
  1. Install eslint if not already present locally or globally
$ npm i -D eslint
# or
$ yarn add -D eslint
  1. Create a .eslintrc file

  2. Extend our config (you can use just the scope name as ESLint will assume the eslint-config prefix):

{
  "extends": [
    "@tabianco"
  ]
}

Full example

A full example .eslintrc for a project with babel support:

Dont forget to npm i -D babel-eslint or yarn add -D babel-eslint

{
  "root": true,
  "parserOptions": {
    "parser": "babel-eslint",
    "sourceType": "module"
  },
  "extends": [
    "@tabianco"
  ]
}

License

MIT - Tabian Co.