@webex/eslint-config-base
v0.8.0
Published
Cisco Webex Teams' JS ESLint config, following our styleguide
Downloads
430
Readme
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.
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@^#.#.#
Add
"extends": "@webex/eslint-config-base"
to your .eslintrc.