Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@thoughtbot/eslint-config

Package Overview
Dependencies
Maintainers
3
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thoughtbot/eslint-config

A sharable [ESLint][eslint] configuration that enforces [thoughtbot’s JavaScript guides][thoughtbot-js-guides].

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

thoughtbot ESLint Config

A sharable ESLint configuration that enforces thoughtbot’s JavaScript guides.

Installation

If using npm, run:

npm install @thoughtbot/eslint-config --save-dev

If using Yarn, run:

yarn add @thoughtbot/eslint-config --dev

Usage

Set your ESLint configuration to:

{
  "extends": "@thoughtbot/eslint-config"
}

You can override rules from the shared configuration, by setting your own values within the rules property:

{
  "extends": "@thoughtbot/eslint-config",
  "rules": {
    "quotes": [
      2,
      "double"
    ]
  }
}

You can also turn a rule off, by setting the value of the rule to "off":

{
  "extends": "@thoughtbot/eslint-config",
  "rules": {
    "quotes": "off"
  }
}

License

thoughtbot ESLint Config is copyright (c) 2019 thoughtbot, inc. It is free software, and may be redistributed under the terms specified in the LICENSE file.

About

thoughtbot

thoughtbot ESLint Config is maintained and funded by thoughtbot, inc. The names and logos for thoughtbot are trademarks of thoughtbot, inc.

We love open source software! See our other projects or hire us to help build your product.

Keywords

FAQs

Package last updated on 28 Jul 2019

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc