JSPM

eslint-config-seekingalpha-base

1.7.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2771
  • Score
    100M100P100Q129584F
  • License MIT

SeekingAlpha's sharable base ESLint config

Package Exports

  • eslint-config-seekingalpha-base

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (eslint-config-seekingalpha-base) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

eslint-config-seekingalpha-base

This package includes the shareable ESLint config used by SeekingAlpha.

Installation

Install ESlint and all Peer Dependencies with NPM:

npm install eslint@5.10.0 eslint-plugin-array-func@3.1.0 eslint-plugin-import@2.14.0 eslint-plugin-jsdoc@3.14.0 eslint-plugin-no-use-extend-native@0.3.12 eslint-plugin-promise@4.0.1 eslint-plugin-unicorn@6.0.1 --save-dev

or Yarn:

yarn add --dev eslint@5.10.0 eslint-plugin-array-func@3.1.0 eslint-plugin-import@2.14.0 eslint-plugin-jsdoc@3.14.0 eslint-plugin-no-use-extend-native@0.3.12 eslint-plugin-promise@4.0.1 eslint-plugin-unicorn@6.0.1

Install SeekingAlpha shareable ESLint:

npm install eslint-config-seekingalpha-base --save-dev

For Yarn:

yarn add --dev eslint-config-seekingalpha-base

Usage

This shareable config includes all ESLint rules including ECMAScript 6 features and set of legacy rules. We also extend our configuration with following plugins:

We expose three configurations:

  • seekingalpha-base - exports all avaliable ESLint rules and all rules of plugins above.
  • seekingalpha-base/browser - exports only browser related rules for ESLint and mentioned plugins. It also sets browser as default environment.
  • seekingalpha-base/node - exports only Node.js related rules for ESLint and mentioned plugins. It also sets node as default environment.

Simply extend the .eslintrc.js in your project with relevant configuration:

// for seekingalpha-base
{
  extends: [
    'seekingalpha-base'
  ]
}

License

MIT © SeekingAlpha