chore: update dependencies (#10781)

This commit is contained in:
jrandolf
2023-08-24 14:42:51 +02:00
committed by GitHub
parent 5c161274f7
commit a4a2cf1d39
4 changed files with 407 additions and 143 deletions

View File

@@ -214,6 +214,19 @@ module.exports = {
],
'@typescript-eslint/prefer-ts-expect-error': 'error',
},
overrides: [
{
files: [
'packages/puppeteer-core/src/**/*.test.ts',
'tools/mochaRunner/src/test.ts',
],
rules: {
// With the Node.js test runner, `describe` and `it` are technically
// promises, but we don't need to await them.
'@typescript-eslint/no-floating-promises': 'off',
},
},
],
},
],
};