Socket
Socket
Sign inDemoInstall

@vertexvis/eslint-config-vertexvis

Package Overview
Dependencies
100
Maintainers
4
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @vertexvis/eslint-config-vertexvis

The Vertex sharable ESLint config


Version published
Maintainers
4
Created

Readme

Source

Vertex ESLint Config

This package contains Vertex's sharable config for ESLint. It includes formatting of JS, JSX, TS and TSX files through Prettier.

Usage

Add this package and ESLint as devDependencies to your package.json.

// package.json
{
  "devDependencies": {
    "@vertexvis/eslint-config-vertexvis": "0.0.0",
    "eslint": "^6.1.0"
  }
}

Add a .eslintrc.js file to the root of your project that extends this config.

This package also includes an optional patch file which monkey patches ESLint's module resolution for plugins. ESLint resolves plugins relative to the consuming package. So any plugins referenced by a sharable config will need to NPM installed in the consuming package. There's an open issue and discussion to change this behavior to resolve plugins relative to the imported config's node_modules folder. This shim mimics this behavior.

// .eslintrc.js

// Include the optional patch which resolves ESLint plugins relative to the
// sharable config package.
require('@vertexvis/eslint-config-vertexvis/patch');

module.exports = {
  extends: '@vertexvis/vertexvis',
};

FAQs

Last updated on 06 Sep 2023

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc