{ // http://www.jshint.com/docs/ "jshint_options": { // prohibits the use of explicitly undeclared variables "undef": true, // prohibits the use of a variable before it was defined "latedef": true, // not dropping curlies "curly": true, // document, navigator, etc... "browser": true, "jquery": true, "node": true, // escape, unescape "nonstandard": false, // console, alert "devel": true, "eqnull": true, "boss": true, "sub": true, "smarttabs": true, // requires strict mode "strict": true, "newcap": true, // new MyConstrutor() "predef": [ "App", "DEBUG", "LOG", "LiveJournal" ] } }