Skip to content

Commit

Permalink
Adding config file for jshint
Browse files Browse the repository at this point in the history
  • Loading branch information
davebalmer committed Feb 27, 2011
1 parent f2eda33 commit c3d588b
Showing 1 changed file with 100 additions and 0 deletions.
100 changes: 100 additions & 0 deletions js/jshint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
{
"predef": [
"jo",
"joCache",
"joChain",
"joClipboard",
"joDOM",
"joEvent",
"joLocal",
"joLog",
"joSubject",
"joTime",
"joYield",
"SEC", "MIN", "HOUR", "DAY",
"joDatabase",
"joDataSource",
"joDispatch",
"joFile",
"joFileSource",
"joPreference",
"joRecord",
"joProperty",
"joScript",
"joSqlDataSource",
"joYQL",
"joBusy",
"joButton",
"joCaption",
"joCard",
"joCollect",
"joContainer",
"joControl",
"joDialog",
"joDivider",
"joExpando",
"joExpandoTitle",
"joFlexrow",
"joFlexcol",
"joFocus",
"joFooter",
"joForm",
"joGesture",
"joGroup",
"joHTML",
"joInput",
"joInterface",
"joLabel",
"joList",
"joMenu",
"joNavBar",
"joOption",
"joBackButton",
"joPasswordInput",
"joPopup",
"joScreen",
"joScroller",
"joSelect",
"joSelectTitle",
"joSelectList",
"joShim",
"joSlider",
"joSound",
"joStack",
"joStackScroller",
"joTabBar",
"joTable",
"joTextArea",
"joTitle",
"joToggle",
"joToolBar",
"joView"
],

"node" : false,
"es5" : false,
"browser" : true,

"boss" : false,
"curly": false,
"debug": false,
"devel": true,
"eqeqeq": false,
"evil": true,
"forin": false,
"immed": true,
"laxbreak": true,
"maxerr": 1000,
"newcap": false,
"noarg": true,
"noempty": false,
"nonew": false,
"nomen": false,
"onevar": false,
"plusplus": false,
"regexp": false,
"undef": false,
"sub": true,
"strict": false,
"white": false
}

0 comments on commit c3d588b

Please sign in to comment.