Skip to content

Commit

Permalink
Agrego hint para ESLINT
Browse files Browse the repository at this point in the history
  • Loading branch information
Emilio authored and Emilio committed Nov 10, 2015
1 parent a3f87f5 commit 39a3b9d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions example/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/*jshint eqnull:true */
/*jshint globalstrict:true */
/*jshint node:true */
/*eslint-env node*/

// APP

Expand Down
1 change: 1 addition & 0 deletions lib/login-plus.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/*jshint eqnull:true */
/*jshint globalstrict:true */
/*jshint node:true */
/*eslint-env node*/

var loginPlus = {};

Expand Down
5 changes: 5 additions & 0 deletions test/test.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
"use strict";
/*jshint eqnull:true */
/*jshint globalstrict:true */
/*jshint node:true */
/*eslint-env node*/

var express = require('express');
var cookieParser = require('cookie-parser');
Expand Down

0 comments on commit 39a3b9d

Please sign in to comment.