Skip to content

Commit

Permalink
Added "one", "insertBefore", "insertAfter" and jshint
Browse files Browse the repository at this point in the history
  • Loading branch information
zerious committed Jun 13, 2014
1 parent 0ff588f commit 42aef02
Show file tree
Hide file tree
Showing 13 changed files with 354 additions and 280 deletions.
57 changes: 57 additions & 0 deletions .jshintrc
@@ -0,0 +1,57 @@
{
"passfail": false,
"maxerr": 20,
"browser": true,
"node": false,
"predef": [],
"debug": false,
"devel": false,
"strict": false,
"globalstrict": false,
"asi": true,
"laxbreak": true,
"bitwise": false,
"boss": true,
"curly": true,
"eqeqeq": false,
"eqnull": false,
"evil": false,
"expr": true,
"forin": false,
"immed": true,
"latedef": false,
"loopfunc": false,
"noarg": false,
"regexp": false,
"regexdash": false,
"scripturl": false,
"shadow": false,
"supernew": false,
"undef": true,
"validthis": false,
"smarttabs": true,
"proto": false,
"onecase": false,
"nonstandard": false,
"multistr": false,
"laxcomma": false,
"lastsemic": false,
"iterator": false,
"funcscope": false,
"esnext": false,
"newcap": true,
"noempty": false,
"nonew": false,
"nomen": false,
"onevar": false,
"plusplus": false,
"sub": false,
"trailing": false,
"indent": 2,
"white": false,
"quotmark": false,
"maxparams": 5,
"maxdepth": 4,
"maxstatements": 25,
"maxcomplexity": 6
}

0 comments on commit 42aef02

Please sign in to comment.