Skip to content
Snippets Groups Projects
Commit 5a2d7bf2 authored by Winnie Hellmann's avatar Winnie Hellmann
Browse files

Ignore Jest config from ESLint

parent baa671a3
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -9,5 +9,6 @@
/scripts/
/tmp/
/vendor/
jest.config.js
karma.config.js
webpack.config.js
/* eslint-disable filenames/match-regex */
const fs = require('fs');
const path = require('path');
const ROOT_PATH = __dirname;
const IS_EE =
process.env.EE !== undefined
? JSON.parse(process.env.EE)
: fs.existsSync(path.join(ROOT_PATH, 'ee'));
 
const reporters = ['default'];
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment