kibana/packages/elastic-eslint-config-kibana/jest.js
Tiago Costa 0068c87d6f
chore(NA): add elastic prefix to eslint-config-kibana (#76059)
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-08-31 20:13:06 +01:00

24 lines
406 B
JavaScript

module.exports = {
overrides: [
{
files: [
'**/*.{test,test.mocks,mock}.{js,mjs,ts,tsx}',
'**/__mocks__/**/*.{js,mjs,ts,tsx}',
],
plugins: [
'jest',
],
env: {
'jest': true,
},
rules: {
'jest/no-focused-tests': 'error',
'jest/no-identical-title': 'error',
'import/order': 'off',
},
}
]
};