0.1.0 • Published 3 years ago

@rocketds/eslint-config v0.1.0

Weekly downloads
-
License
UNLICENSED
Repository
-
Last release
3 years ago

@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"]
}