kibana/packages/eslint-config-kibana
Kim Joar Bekkelund ecd9bcb356 Upgrade to Jest 21 (#13863)
* Upgrade to Jest 21

* Bump eslint-config-kibana to v0.11.0
2017-09-07 12:06:55 +02:00
..
.eslintrc.js Add AirBnB linting rules for React best practices. Bump to v0.10.0. (#13259) 2017-08-03 08:18:08 -07:00
.gitignore Move eslint-config-kibana into core (#12725) 2017-07-25 10:02:14 +02:00
.npmignore Move eslint-config-kibana into core (#12725) 2017-07-25 10:02:14 +02:00
jest.js [eslint-config-kibana] Add jest plugin and settings (#13090) 2017-07-28 14:00:19 +02:00
package.json Upgrade to Jest 21 (#13863) 2017-09-07 12:06:55 +02:00
README.md [eslint-config-kibana] Add jest plugin and settings (#13090) 2017-07-28 14:00:19 +02:00

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