Skip to content

Commit

Permalink
jQuery style guide. Fixes jquery-archive#5870
Browse files Browse the repository at this point in the history
  • Loading branch information
gseguin committed Apr 11, 2013
1 parent be2f809 commit 75105fa
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 8 deletions.
11 changes: 8 additions & 3 deletions .jshintrc
@@ -1,12 +1,17 @@
{
"boss": true,
"curly": true,
"eqnull": true,
"eqeqeq": true,
"eqnull": true,
"expr": true,
"immed": true,
"noarg": true,
"node": true,
"onevar": true,
"quotmark": "double",
"smarttabs": true,
"trailing": true,
"undef": true,
"unused": true
"unused": true,

"node": true
}
16 changes: 11 additions & 5 deletions js/.jshintrc
@@ -1,15 +1,21 @@
{
"boss": true,
"curly": true,
"eqeqeq": true,
"eqnull": true,
"expr": true,
"immed": true,
"noarg": true,
"onevar": true,
"quotmark": "double",
"smarttabs": true,
"trailing": true,
"undef": true,
"unused": true,

"immed": false,
"latedef": true,
"newcap": true,
"noarg": true,
"sub": true,
"undef": true,
"boss": true,
"eqnull": true,
"browser": true,
"globals": {
"define": false,
Expand Down

0 comments on commit 75105fa

Please sign in to comment.