Skip to content

Commit

Permalink
Move globals into .jshintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
mojodna committed Jul 6, 2013
1 parent 35ca20a commit 628c0ba
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
18 changes: 18 additions & 0 deletions test/.jshintrc
@@ -0,0 +1,18 @@
{
"node": true,
"es5": true,
"globalstrict": true,
"curly": true,
"sub": true,
"indent": 4,
"newcap": true
"expr": true,
"globals": {
"describe": true,
"before": true,
"beforeEach": true,
"after": true,
"afterEach": true,
"it": true
}
}
2 changes: 0 additions & 2 deletions test/middleware.js
@@ -1,5 +1,3 @@
/*jshint expr:true */
/*global describe:true, before:true, beforeEach:true, after:true, afterEach:true it:true */
"use strict";

var EventEmitter = require("events").EventEmitter,
Expand Down

0 comments on commit 628c0ba

Please sign in to comment.