chore: disallow async/await usage in src

This commit is contained in:
Evan You 2021-07-02 08:11:30 -04:00
parent 438754a0d1
commit e47b1ca6d6

View File

@ -20,7 +20,8 @@ module.exports = {
'no-restricted-syntax': [ 'no-restricted-syntax': [
'error', 'error',
'ObjectExpression > SpreadElement', 'ObjectExpression > SpreadElement',
'ObjectPattern > RestElement' 'ObjectPattern > RestElement',
'AwaitExpression'
] ]
}, },
overrides: [ overrides: [