소스 검색

chore: disallow async/await usage in src

Evan You 4 년 전
부모
커밋
e47b1ca6d6
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      .eslintrc.js

+ 2 - 1
.eslintrc.js

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