1.0.0 • Published 2 years ago

eslint-config-carjuan v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

Eslint-config-carjuan

This is the base configuration used in my personal JavaScript projects:

It mainly:

Installation

  1. Install the configuration using your favourite Node package manager.

npm

npm install --save-dev eslint-config-carjuan eslint prettier

yarn

yarn add -D eslint-config-carjuan eslint prettier

pnpm

pnpm install -D eslint-config-carjuan eslint prettier
  1. In your ESLint configuration
// .eslintrc.*
{
  env: {
    // Your env
  }
  extends: "carjuan"
  rules:
  {
    // Your rules go here
  }
  ...
}