mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
* Pin dependencies (#37404)
* Pin dependencies
* [eslint] ignore large files that take a long time to parse
* [eslint-plugin-import] force `querystring` to be considered a core module
* [eslint-plugin-import] auto-fix import order issues
* Pin dependencies (#37454)
(cherry picked from commit
|
||
---|---|---|
.. | ||
.eslintrc.js | ||
.gitignore | ||
.npmignore | ||
javascript.js | ||
jest.js | ||
package.json | ||
README.md | ||
restricted_globals.js | ||
typescript.js |
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'
]
}