Skip to content

Commit

Permalink
Use external JSHint config file
Browse files Browse the repository at this point in the history
Leaving globals in there as some IDEs might not work w/ jshint and it's
config file, and their static analysis might choke on unkown globals.
  • Loading branch information
jensarps committed Aug 8, 2013
1 parent 756ef4d commit 111eac9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"camelcase": true,
"immed": true,
"latedef": true,
"newcap": true,
"nonew": true,
"quotmark": "single",
"expr": true,
"browser": true,
"devel": false,
"worker": true
}
1 change: 0 additions & 1 deletion idbstore.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/*jshint expr:true */
/*global window:false, self:false, console:false, define:false, module:false */

/**
Expand Down

0 comments on commit 111eac9

Please sign in to comment.