Restore useE2EEsLintConfig const in .eslintrc.js, but pointing directly

to the use-config file inside the e2e env folder.
This commit is contained in:
Nestor Soriano 2021-01-29 17:20:29 +01:00
parent ceffe0780a
commit f27e776773
1 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,8 @@
/** @format */
module.exports = {
const { useE2EEsLintConfig } = require( './tests/e2e/env/config/use-config' );
module.exports = useE2EEsLintConfig( {
root: true,
env: {
browser: true,
@ -28,4 +30,4 @@ module.exports = {
jsx: true
}
},
};
} );