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

@jestaubach/eslint-config

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jestaubach/eslint-config

A shared eslint configuration

  • 0.1.14
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

@jestaubach/eslint-config

@jestaubach/eslint-config is a set of shareable configs for ESLint.

Motivation

  1. DRY principle - reuse the same eslint configurations across projects.

  2. Enforce a consistent style amongst contributors to a project.

Installation

ESLint and the @jestaubach/eslint-config will be used in the development of other projects. Therefore, run the following npm command to install them as devDependencies of your project:

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

or

yarn add -D eslint @jestaubach/eslint-config

Configuration

Simply add an eslintConfig key to your package.json file, like so:

  "eslintConfig": {
    "extends": "@jestaubach/eslint-config"
  },

Extend with additonal configurations:

  "eslintConfig": {
    "extends": [
      "@jestaubach/eslint-config",
      "@jestaubach/eslint-config/react"
    ]
  },

Override specific rules:

  "eslintConfig": {
    "extends": "@jestaubach/eslint-config",
    "rules": {
      "max-len": [
        "error",
        {
          "code": 80,
        }
      ]
    }
  }

@jestaubach/babel-config

@jestaubach/babel-config-ts

@jestaubach/eslint-config-ts

@jestaubach/prettier-config

@jestaubach/stylelint-config

Keywords

FAQs

Package last updated on 11 Aug 2022

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