Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2021-08-11 13:02:43 +00:00
parent 46043e8a9e
commit 4a0d3378b1
21 changed files with 760 additions and 6 deletions

View file

@ -13,6 +13,14 @@ module.exports = {
'github/unescaped-html-literal': 'error',
'github/no-useless-passive': 'error',
'github/require-passive-events': 'error',
'github/prefer-observers': 'error'
'github/prefer-observers': 'error',
'import/no-nodejs-modules': 'error',
'no-restricted-syntax': [
'error',
{
selector: "NewExpression[callee.name='URL'][arguments.length=1]",
message: 'Please pass in `window.location.origin` as the 2nd argument to `new URL()`'
}
]
}
}