Skip to content

Commit

Permalink
Add jshintrc to project
Browse files Browse the repository at this point in the history
  • Loading branch information
OrenMe committed Feb 16, 2015
1 parent 260f22a commit ba07dd5
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .jshintrc
@@ -0,0 +1,27 @@
{
// Enforcing
"bitwise": true,
"eqeqeq": true,
"es3": true,
"freeze": true,
"latedef": true,
"noarg": true,
"nonew": true,
"undef": true,
"unused": true,
"strict": false,

// Relaxing
"laxbreak": true,
"multistr": true,

// Environment
"browser": true,

"globals": {
"mediaWiki": true,
"jQuery": false,
"QUnit": false,
"gM": true
}
}

0 comments on commit ba07dd5

Please sign in to comment.