Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 499 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 499 Bytes

@bedrockio/eslint-plugin

Common ESLint plugin for Bedrock projects.

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-bedrock:

$ npm install @bedrockio/eslint-plugin --save-dev

Usage

You can now extend from recommended, react, and jest configs.

{
    "extends": [
        "plugin:bedrock/recommended",
        "plugin:bedrock/jest",
        "plugin:bedrock/react"
    ]
}