{
    "laxcomma": true //This option suppresses warnings about comma-first coding style
	,"laxbreak": true //This option suppresses most of the warnings about possibly unsafe line breakings in your code
	,"smarttabs": true //suppress 'mixed spaces and tabs' warning
	,"sub": true //suppress warnings about using [] notation when it can be expressed in dot notation: person['name'] vs. person.name. 
	,"unused": "vars"
	,"undef": true
	,"globals": { 
		"jQuery": false 
		,"window": false 
		,"$": false
		,"document": false		
		,"escape": true
		,"unescape": true
		,"google": true
	}
}