소스 검색

使用 Eslint 检查符合 standard 规范的代码

modood 8 년 전
부모
커밋
680ffc2a58
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      .eslintrc.js

+ 2 - 2
.eslintrc.js

@@ -3,12 +3,12 @@ module.exports = {
   extends: 'standard',
   globals: {
     'describe': true,
-    'context': true,
+    'it': true,
     'before': true,
     'beforeEach': true,
     'after': true,
     'afterEach': true,
-    'it': true,
+    'context': true,
     'expect': true
   }
 }