Files
puppeteer/test/.eslintrc.js
2022-06-15 12:42:21 +02:00

14 lines
276 B
JavaScript

module.exports = {
rules: {
'no-restricted-imports': [
'error',
{
/** The mocha tests run on the compiled output in the /lib directory
* so we should avoid importing from src.
*/
patterns: ['*src*'],
},
],
},
};