puppeteer/test/.eslintrc.js
2023-06-12 10:44:18 +02:00

30 lines
659 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*'],
},
],
},
overrides: [
{
files: ['*.spec.ts'],
rules: {
'no-restricted-syntax': [
'error',
{
message:
'Use helper command `launch` to make sure the browsers get cleaned',
selector:
'MemberExpression[object.name="puppeteer"][property.name="launch"]',
},
],
},
},
],
};