npm.io
0.1.0 • Published 5 years ago

@rocketds/eslint-config

Licence
UNLICENSED
Version
0.1.0
Deps
11
Size
4 kB
Vulns
0
Weekly
0

@rocketds/eslint-config

ESLint configuration for Rocket Design System

Getting started

npm install -S @rocketds/eslint-config

If you prefer Yarn, use the following command instead:

yarn add @rocketds/eslint-config

Usage

You can use @rocketds/eslint-config in your project by extending it in your eslint configuration. For example, if we had an .eslintrc file:

{
  "extends": ["@rocketds/eslint-config"]
}

The default configuration available under @rocketds/eslint-config includes all ESLint configuration and plugins, including plugins for React.js development. If you'd like to not include these rules in your setup, you can also include a base or vanilla oriented configuration by doing the following:

{
  "extends": ["@rocketds/eslint-config/base"]
}