eslint-config-bravissimo

ESLint configuration for Bravissimo projects

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
eslint-config-bravissimo
003.0.07 years ago7 years agoMinified + gzip package size for eslint-config-bravissimo in KB

Readme

eslint-config-bravissimo
This is the ESLint configuration for Bravissimo projects. It's based off Airbnb's style guide with a few customisations.

Rules

The following rules apply in addition to (or instead of) the base Airbnb rules:

Installation

$ npm install --save-dev \
    eslint@^3.2.2 \
    eslint-plugin-babel@^3.3.0 \
    eslint-plugin-import@^1.12.0 \
    eslint-config-bravissimo@^2.0.0 \

Usage

Add the following lines to your package.json:
"eslintConfig": {
  "extends": [
    "bravissimo"
  ]
},
Alternatively, add the following to an .eslintrc file in your project root:
{
  "extends": "bravissimo"
}

More information

Full details on configuring and using ESLint can be found on the ESLint User Guide.