kibana/packages/elastic-eslint-config-kibana
Kibana Machine f095537175
[eslint] forbid trailing slashes in package imports (#113455) (#113558)
Co-authored-by: spalger <spalger@users.noreply.github.com>

Co-authored-by: Spencer <email@spalger.com>
Co-authored-by: spalger <spalger@users.noreply.github.com>
2021-09-30 15:29:48 -04:00
..
.eslintrc.js [eslint] forbid trailing slashes in package imports (#113455) (#113558) 2021-09-30 15:29:48 -04:00
.gitignore
.npmignore
BUILD.bazel chore(NA): moving @kbn/es-query to babel transpiler (#107281) (#107318) 2021-07-30 16:02:22 -04:00
javascript.js
jest.js
package.json chore(NA): moving @kbn/dev-utils into bazel (#98496) (#98696) 2021-04-29 00:50:19 +00:00
react.js chore(NA): ensure scripts run with --preserve-symlinks (#94046) (#94636) 2021-03-15 18:57:30 -04:00
README.md
restricted_globals.js
typescript.js chore(NA): ensure scripts run with --preserve-symlinks (#94046) (#94636) 2021-03-15 18:57:30 -04:00

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'
  ]
}