Skip to content

Commit e47b1ca

Browse files
committed
chore: disallow async/await usage in src
1 parent 438754a commit e47b1ca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.eslintrc.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ module.exports = {
2020
'no-restricted-syntax': [
2121
'error',
2222
'ObjectExpression > SpreadElement',
23-
'ObjectPattern > RestElement'
23+
'ObjectPattern > RestElement',
24+
'AwaitExpression'
2425
]
2526
},
2627
overrides: [

0 commit comments

Comments
 (0)