New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

eslint-config-bengler

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-bengler

Shared eslint configs for Bengler

5.0.2
latest
Version published
Weekly downloads
106
32.5%
Maintainers
4
Weekly downloads
 
Created

eslint-config-bengler

Shared eslint rules for Bengler

Usage

npm i -D eslint-config-bengler

.eslintrc

A vanilla JavaScript project (ES6 / JavaScript 2015)

{
  "extends": [
    "bengler"
  ]
}

A React project

{
  "extends": [
    "bengler",
    "bengler/react",
  ]
}

Legacy ES5 projects

{
  "extends": [
    "bengler/es5"
  ]
}

Legacy overrides

To ease migration of existing projects to the shared eslint config, a set of rules are redefined from errors to warnings. These rules are defined in files in the ./legacy-overrides folder.

!IMPORTANT! Do not include any of these in new projects. They are going away eventually.

Example:

A legacy project that uses React:

{
  "extends": [
    "bengler",
    "bengler/legacy-overrides/base",
    "bengler/react",
    "bengler/legacy-overrides/react"
  ]
}

FAQs

Package last updated on 28 Jan 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts