Skip to content

Commit

Permalink
jshint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fchasen committed Nov 18, 2013
1 parent fd940b0 commit b2cebfb
Show file tree
Hide file tree
Showing 14 changed files with 907 additions and 1,169 deletions.
28 changes: 28 additions & 0 deletions .jshintrc
@@ -0,0 +1,28 @@
{
// Environments
"browser": true,
"devel": true,
"worker": true,

// Enforcing
//"maxlen": 80,
//"quotmark": "single",
"trailing": true,
"strict": false,

// Relaxing
"boss": true,
"funcscope": true,
"globalstrict": true,
"loopfunc": true,
"maxerr": 1000,
"nonstandard": true,
"sub": true,
"validthis": true,

"globals": {
"_": false,
"define" : false,
"module" : false
}
}

0 comments on commit b2cebfb

Please sign in to comment.