Skip to content

Commit

Permalink
Update JSHint's options.
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Feb 26, 2015
1 parent 07e593a commit 4b877e9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"boss": true,
"curly": true,
"eqeqeq": true,
"eqnull": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"node": true,
"sub": true,
"undef": true,
"boss": true,
"eqnull": true,
"node": true
"unused": true
}
4 changes: 1 addition & 3 deletions test/test.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
'use strict';

var fs = require('fs');
var grunt = require('grunt');
var os = require('os');
var path = require('path');

exports.imagemin = {
minifyPng: function (test) {
Expand Down

0 comments on commit 4b877e9

Please sign in to comment.