Explorar el Código

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

modood hace 8 años
padre
commit
680ffc2a58
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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
   }
 }