1.0.6 • Published 7 years ago

eslint-config-maple-inside v1.0.6

Weekly downloads
18
License
MIT
Repository
github
Last release
7 years ago

eslint-plugin-maple-inside

ESLint rules from Maple Inside's conventions.

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-maple-inside:

npm install eslint-plugin-maple-inside --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-maple-inside globally.

Usage

Our default export contains all of our ESLint rules, including ECMAScript 6+ and React. It requires babel-eslint, eslint, eslint-plugin-babel and eslint-plugin-react.

Add maple-inside to the extends section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
  "extends": "maple-inside"
}