Socket
Socket
Sign inDemoInstall

@webex/eslint-config-base

Package Overview
Dependencies
249
Maintainers
20
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @webex/eslint-config-base

Cisco Webex Teams' JS ESLint config, following our styleguide


Version published
Maintainers
20
Created

Readme

Source

eslint-config-webex

This package provides Cisco Webex Teams' base JS .eslintrc (without React plugins) as an extensible shared config.

Usage

We export two ESLint configurations for your usage.

Our default export contains all of our ESLint rules, including ECMAScript 6+. It requires eslint, eslint-plugin-import, and eslint-plugin-mocha.

If you use yarn, run npm info "@webex/eslint-config-base@latest" peerDependencies to list the peer dependencies and versions, then run yarn add --dev <dependency>@<version> for each listed peer dependency. See below for npm instructions.

  1. Install the correct versions of each package, which are listed by the command:

    npm info "@webex/eslint-config-base@latest" peerDependencies
    

    Linux/OSX users can run

    (
      export PKG=@webex/eslint-config-base;
      npm info "$PKG@latest" peerDependencies --json | command sed 's/[\{\},]//g ; s/: /@/g' | xargs npm install --save-dev "$PKG@latest"
    )
    

    Which produces and runs a command like:

    npm install --save-dev @webex/eslint-config-base eslint@^#.#.# eslint-plugin-import@^#.#.# eslint-plugin-mocha@^#.#.#
    

    Windows users can either install all the peer dependencies manually, or use the install-peerdeps cli tool.

    npm install -g install-peerdeps
    install-peerdeps --dev @webex/eslint-config-base
    

    The cli will produce and run a command like:

    npm install --save-dev @webex/eslint-config-base eslint@^#.#.# eslint-plugin-import@^#.#.# eslint-plugin-mocha@^#.#.#
    
  2. Add "extends": "@webex/eslint-config-base" to your .eslintrc.

Keywords

FAQs

Last updated on 09 Jan 2019

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