kibana/packages/eslint-config-kibana
Tim Roes e5ea9dd2a6
Update React to 16.3 (#18768) (#19033)
* Update React to 16.3

* Switch off specific eslint rules

* Update enzyme snapshots

* Incorporate PR feedback
2018-05-14 15:15:18 +02:00
..
.eslintrc.js Update React to 16.3 (#18768) (#19033) 2018-05-14 15:15:18 +02:00
.gitignore Move eslint-config-kibana into core (#12725) (#13124) 2017-07-26 08:54:48 -07:00
.npmignore Move eslint-config-kibana into core (#12725) (#13124) 2017-07-26 08:54:48 -07:00
jest.js Use Jest on cli tests (#16389) (#17635) 2018-04-10 18:55:39 +02:00
package.json [kbn-pm] Include Kibana's transitive _projects_ in build (#16813) (#17097) 2018-03-12 12:01:11 +01:00
README.md [6.x] [eslint-config-kibana] 0.9.0 and 0.10.0 (#13318) 2017-08-03 08:49:38 -07: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'
  ]
}