kibana/packages/elastic-eslint-config-kibana
Spencer 72f6700270
[eslint] prevent async Promise constructor mistakes (#110349)
Co-authored-by: spalger <spalger@users.noreply.github.com>
2021-08-31 17:54:13 -04:00
..
.eslintrc.js [eslint] prevent async Promise constructor mistakes (#110349) 2021-08-31 17:54:13 -04:00
.gitignore
.npmignore
BUILD.bazel
javascript.js
jest.js
package.json
react.js
README.md
restricted_globals.js
typescript.js

elastic-eslint-config-kibana

The eslint config used by the kibana team

Usage

To use this eslint config, just install the peer dependencies and reference it in your .eslintrc:

{
  extends: [
    '@elastic/eslint-config-kibana'
  ]
}

Optional jest config

If the project uses the jest test runner, the @elastic/eslint-config-kibana/jest config can be extended as well to use eslint-plugin-jest and add settings specific to it:

{
  extends: [
    '@elastic/eslint-config-kibana',
    '@elastic/eslint-config-kibana/jest'
  ]
}